blob: e4ebf7002d50424615c233e6cfd67be24d1530aa (
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
|
############################################################################
#
# File: gobject.icn
#
# Subject: Declarations for geometrical objects
#
# Author: Ralph E. Griswold
#
# Date: July 22, 1997
#
############################################################################
#
# This file is in the public domain.
#
############################################################################
#
# These declarations are provided for representing geometrical objects
# as records.
#
############################################################################
record Circle(center, radius) # point, length
record Line(p1, p2) # point, point
record Point(x, y, z) # x and y coordinates
record Point_Polar(r, a) # radius, angle
record Polygon(points) # list of points
record Rectangle(upper_left, lower_right) # point, point
|