Unit Shape |
Classes |
TShape - The TShape class defines a sinple shape used in the game.
Functions |
Types |
PEdgeDescriptor
PFinePoint
TEdgeDescriptor
TFinePoint
Constants |
Variables |
Functions |
Types |
PEdgeDescriptor = ^TEdgeDescriptor
PFinePoint = ^TFinePoint
TEdgeDescriptor = recordThis record describes a connection between two points in space.
iVertex1 : Integer;
iVertex2 : Integer;
pt1 : PFinePoint;
pt2 : PFinePoint;
end;
TFinePoint = recordThis record defines a precise position in some arbitrary coordinate system.
x : Real;
y : Real;
end;
Constants |
Variables |