-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraph.cpp
61 lines (46 loc) · 1.73 KB
/
Graph.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
@brief グラフィックライブラリ for C++
@file Graph.cpp
@author Fumi.Iseki (C)
*/
#include "Graph.h"
using namespace jbxl;
/**
void jbxl::rotate_point(int& x, int& y, double sxc, double syc, double dxc, double dyc, double cst, double snt)
@param[in,out] x in: X座標.out: 回転後のX座標.
@param[in,out] y in: Y座標.out: 回転後のY座標.
@param sxc 回転前の座標の中心の X座標
@param syc 回転前の座標の中心の Y座標
@param dxc 回転後の座標の中心の X座標
@param dyc 回転後の座標の中心の Y座標
@param cst 回転角 cosθ
@param snt 回転角 sinθ
*/
void jbxl::rotate_point(int& x, int& y, double sxc, double syc, double dxc, double dyc, double cst, double snt)
{
double a, b, u, t;
a = x - sxc;
b = syc - y;
u = a*cst - b*snt;
t = a*snt + b*cst;
x = (int)(u + dxc + 0.5);
y = (int)(dyc - t + 0.5);
return;
}
/**
void jbxl::rotate_point_angle(int& x, int& y, double sxc, double syc, double dxc, double dyc, double th)
@param[in,out] x in: X座標.out: 回転後のX座標.
@param[in,out] y in: Y座標.out: 回転後のY座標.
@param sxc 回転前の座標の中心の X座標
@param syc 回転前の座標の中心の Y座標
@param dxc 回転後の座標の中心の X座標
@param dyc 回転後の座標の中心の Y座標
@param th 回転角(ラジアン)
*/
void jbxl::rotate_point_angle(int& x, int& y, double sxc, double syc, double dxc, double dyc, double th)
{
double cst = (double)cos(th);
double snt = (double)sin(th);
rotate_point(x, y, sxc, syc, dxc, dyc, cst, snt);
return;
}