FSUIPC Client DLL
.NET interface for FSUIPC
|
Represents a line segment on the Earth that runs between. More...
Public Member Functions | |
FsLatLonLineSegment (FsLatLonPoint Point1, FsLatLonPoint Point2) | |
Creates a FsLatLonLineSegment from 2 FsLatLonPoints. | |
FsLatLonLineSegment (double Point1Lat, double Point1Lon, double Point2Lat, double Point2Lon) | |
Creates a FsLatLonLineSegment from decimal degree values. | |
bool | ContainsPoint (FsLatLonPoint Point) |
Tests if a point is on the line segment. | |
FsLatLonPoint? | GetIntersection (FsLatLonLineSegment Line) |
Checks if a given line segment intersects this line segment. | |
Properties | |
FsLatLonPoint | P1 [get] |
A point that represents one of the ends of the line segment. | |
FsLatLonPoint | P2 [get] |
A point that represents one of the ends of the line segment. | |
Represents a line segment on the Earth that runs between.
|
inline |
Creates a FsLatLonLineSegment from 2 FsLatLonPoints.
Point1 | A FsLatLonPoint representing the start of the line segment |
Point2 | A FsLatLonPoint representing the end of the line segment |
|
inline |
Creates a FsLatLonLineSegment from decimal degree values.
Point1Lat | The Latitude of the point representing the start of the line segment (in Decimal Degrees) |
Point1Lon | The Longitude of the point representing the start of the line segment (in Decimal Degrees) |
Point2Lat | The Latitude of the point representing the ebd of the line segment (in Decimal Degrees) |
Point2Lon | The Longitude of the point representing the end of the line segment (in Decimal Degrees) |
|
inline |
Tests if a point is on the line segment.
Point |
|
inline |
Checks if a given line segment intersects this line segment.
Line | The line segment to check for intersection |