Line

Struct for representing a line composed of at least a starting point and an end point. *Notes: *This struct doesn't check to make sure that the line made is an actual line and assumes the user knows what they are doing.

Members

Functions

opAssign
void opAssign(Line rhs)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

mid_points
Point[] mid_points;

Line.mid_points is an array containing all of the points that are neither start nor end points.

start
Point start;

Line.start is the start point of the line.

stop
Point stop;

Line.end is the end point of the line.

Meta