Class InfiniteLine

InfiniteLine class

Contains elements specifying the x- and y-coordinates of two points on an infinite line. The X and Y elements specify the x- and y-coordinates of the first point, and the A and B elements specify the x- and y-coordinates of the second point.

public class InfiniteLine : Coordinate

Constructors

NameDescription
InfiniteLine()Creates an instance of the InfiniteLine class.

Properties

NameDescription
A { get; set; }An x-coordinate of a point on the infinite line paired with the y-coordinate represented by the B element.
B { get; set; }A y-coordinate of a point on an infinite line paired with an x-coordinate represented by the A element.
override Del { get; set; }A flag indicating whether the element has been deleted locally. A value of 1 indicates that the element was deleted locally.
override IX { get; set; }The zero-based index of the element within its parent element.
X { get; set; }An x-coordinate of a point on the infinite line.
Y { get; set; }A y-coordinate of a point on the infinite line.

Methods

NameDescription
Clone()Creates deep copy of this instance.

See Also