JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
Graph.cpp
Go to the documentation of this file.
1
8#include "Graph.h"
9
10
11using namespace jbxl;
12
13
26void jbxl::rotate_point(int& x, int& y, double sxc, double syc, double dxc, double dyc, double cst, double snt)
27{
28 double a, b, u, t;
29
30 a = x - sxc;
31 b = syc - y;
32 u = a*cst - b*snt;
33 t = a*snt + b*cst;
34 x = (int)(u + dxc + 0.5);
35 y = (int)(dyc - t + 0.5);
36
37 return;
38}
39
40
52void jbxl::rotate_point_angle(int& x, int& y, double sxc, double syc, double dxc, double dyc, double th)
53{
54 double cst = (double)cos(th);
55 double snt = (double)sin(th);
56
57 rotate_point(x, y, sxc, syc, dxc, dyc, cst, snt);
58
59 return;
60}
61
グラフィックデータ定義用ヘッダ for C++
Definition Brep.h:29
void rotate_point_angle(int &x, int &y, double sxc, double syc, double dxc, double dyc, double th)
Definition Graph.cpp:52
void rotate_point(int &x, int &y, double sxc, double syc, double dxc, double dyc, double cst, double snt)
Definition Graph.cpp:26