blob: 6377c3a428974b5f913b829f790b7e21ffc65c21 (
plain)
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
|
############################################################################
#
# File: xform.icn
#
# Subject: Procedures to transform points
#
# Author: Ralph E. Griswold
#
# Date: October 1, 1997
#
############################################################################
#
# This file is in the public domain.
#
############################################################################
#
# This file contains procedures that manipulate points representing
# vertices.
#
############################################################################
#
# Links: calls, gobject
#
############################################################################
link calls, gobject
procedure p_xlate(call, x, y)
local point
every point := invoke(call) do {
point.x +:= x
point.y +:= y
suspend point
}
end
procedure p_scale(call, factor)
local point
every point := invoke(call) do {
point.x *:= factor
point.y *:= factor
suspend point
}
end
procedure p_rotate(call, angle)
local point, radius
every point := invoke(call) do {
radius := sqrt(point.x ^ 2, point.y ^ 2)
point.x *:= radius * cos(angle)
point.y *:= radius * sin(angle)
suspend point
}
end
|