#include <PolygonArea.h>
Public Member Functions | |
void | AddEdge (double azi, double s) |
void | AddPoint (double lat, double lon) |
void | Clear () |
unsigned | Compute (bool reverse, bool sign, [System::Runtime::InteropServices::Out] double% perimeter, [System::Runtime::InteropServices::Out] double% area) |
PolygonAreaRhumb (const bool polyline) | |
PolygonAreaRhumb (Rhumb^ earth, bool polyline) | |
unsigned | TestEdge (double azi, double s, bool reverse, bool sign, [System::Runtime::InteropServices::Out] double% perimeter, [System::Runtime::InteropServices::Out] double% area) |
unsigned | TestPoint (double lat, double lon, bool reverse, bool sign, [System::Runtime::InteropServices::Out] double% perimeter, [System::Runtime::InteropServices::Out] double% area) |
~PolygonAreaRhumb () | |
Private Member Functions | |
!PolygonAreaRhumb (void) | |
Private Attributes | |
GeographicLib::PolygonAreaRhumb * | m_pPolygonArea |
Inspector functions | |
property double | MajorRadius { double get() |
property double | Flattening { double get() |
void | CurrentPoint ([System::Runtime::InteropServices::Out] double% lat, [System::Runtime::InteropServices::Out] double% lon) |
Definition at line 385 of file PolygonArea.h.
|
private |
Definition at line 247 of file dotnet/NETGeographicLib/PolygonArea.cpp.
PolygonAreaRhumb::PolygonAreaRhumb | ( | Rhumb^ | earth, |
bool | polyline | ||
) |
Constructor for PolygonArea.
[in] | earth | the Geodesic object to use for geodesic calculations. |
[in] | polyline | if true that treat the points as defining a polyline instead of a polygon. |
Definition at line 257 of file dotnet/NETGeographicLib/PolygonArea.cpp.
PolygonAreaRhumb::PolygonAreaRhumb | ( | const bool | polyline | ) |
Constructor for PolygonArea that assumes a WGS84 ellipsoid.
[in] | polyline | if true that treat the points as defining a polyline instead of a polygon. |
Definition at line 273 of file dotnet/NETGeographicLib/PolygonArea.cpp.
|
inline |
The destructor calls the finalizer.
Definition at line 415 of file PolygonArea.h.
void PolygonAreaRhumb::AddEdge | ( | double | azi, |
double | s | ||
) |
Add an edge to the polygon or polyline.
[in] | azi | azimuth at current point (degrees). |
[in] | s | distance from current point to next point (meters). |
This does nothing if no points have been added yet. Use PolygonArea::CurrentPoint to determine the position of the new vertex.
Definition at line 296 of file dotnet/NETGeographicLib/PolygonArea.cpp.
void PolygonAreaRhumb::AddPoint | ( | double | lat, |
double | lon | ||
) |
Add a point to the polygon or polyline.
[in] | lat | the latitude of the point (degrees). |
[in] | lon | the longitude of the point (degrees). |
lat should be in the range [−90°, 90°].
Definition at line 290 of file dotnet/NETGeographicLib/PolygonArea.cpp.
void PolygonAreaRhumb::Clear | ( | ) |
Clear PolygonArea, allowing a new polygon to be started.
Definition at line 287 of file dotnet/NETGeographicLib/PolygonArea.cpp.
unsigned PolygonAreaRhumb::Compute | ( | bool | reverse, |
bool | sign, | ||
[System::Runtime::InteropServices::Out] double% | perimeter, | ||
[System::Runtime::InteropServices::Out] double% | area | ||
) |
Return the results so far.
[in] | reverse | if true then clockwise (instead of counter-clockwise) traversal counts as a positive area. |
[in] | sign | if true then return a signed result for the area if the polygon is traversed in the "wrong" direction instead of returning the area for the rest of the earth. |
[out] | perimeter | the perimeter of the polygon or length of the polyline (meters). |
[out] | area | the area of the polygon (meters2); only set if polyline is false in the constructor. |
Definition at line 302 of file dotnet/NETGeographicLib/PolygonArea.cpp.
void PolygonAreaRhumb::CurrentPoint | ( | [System::Runtime::InteropServices::Out] double% | lat, |
[System::Runtime::InteropServices::Out] double% | lon | ||
) |
Report the previous vertex added to the polygon or polyline.
[out] | lat | the latitude of the point (degrees). |
[out] | lon | the longitude of the point (degrees). |
If no points have been added, then NaNs are returned. Otherwise, lon will be in the range [−180°, 180°).
Definition at line 338 of file dotnet/NETGeographicLib/PolygonArea.cpp.
unsigned PolygonAreaRhumb::TestEdge | ( | double | azi, |
double | s, | ||
bool | reverse, | ||
bool | sign, | ||
[System::Runtime::InteropServices::Out] double% | perimeter, | ||
[System::Runtime::InteropServices::Out] double% | area | ||
) |
Return the results assuming a tentative final test point is added via an azimuth and distance; however, the data for the test point is not saved. This lets you report a running result for the perimeter and area as the user moves the mouse cursor. Ordinary floating point arithmetic is used to accumulate the data for the test point; thus the area and perimeter returned are less accurate than if PolygonArea::AddEdge and PolygonArea::Compute are used.
[in] | azi | azimuth at current point (degrees). |
[in] | s | distance from current point to final test point (meters). |
[in] | reverse | if true then clockwise (instead of counter-clockwise) traversal counts as a positive area. |
[in] | sign | if true then return a signed result for the area if the polygon is traversed in the "wrong" direction instead of returning the area for the rest of the earth. |
[out] | perimeter | the approximate perimeter of the polygon or length of the polyline (meters). |
[out] | area | the approximate area of the polygon (meters2); only set if polyline is false in the constructor. |
Definition at line 326 of file dotnet/NETGeographicLib/PolygonArea.cpp.
unsigned PolygonAreaRhumb::TestPoint | ( | double | lat, |
double | lon, | ||
bool | reverse, | ||
bool | sign, | ||
[System::Runtime::InteropServices::Out] double% | perimeter, | ||
[System::Runtime::InteropServices::Out] double% | area | ||
) |
Return the results assuming a tentative final test point is added; however, the data for the test point is not saved. This lets you report a running result for the perimeter and area as the user moves the mouse cursor. Ordinary floating point arithmetic is used to accumulate the data for the test point; thus the area and perimeter returned are less accurate than if PolygonArea::AddPoint and PolygonArea::Compute are used.
[in] | lat | the latitude of the test point (degrees). |
[in] | lon | the longitude of the test point (degrees). |
[in] | reverse | if true then clockwise (instead of counter-clockwise) traversal counts as a positive area. |
[in] | sign | if true then return a signed result for the area if the polygon is traversed in the "wrong" direction instead of returning the area for the rest of the earth. |
[out] | perimeter | the approximate perimeter of the polygon or length of the polyline (meters). |
[out] | area | the approximate area of the polygon (meters2); only set if polyline is false in the constructor. |
lat should be in the range [−90°, 90°].
Definition at line 314 of file dotnet/NETGeographicLib/PolygonArea.cpp.
property double NETGeographicLib::PolygonAreaRhumb::Flattening { double get() |
Definition at line 532 of file PolygonArea.h.
|
private |
Definition at line 389 of file PolygonArea.h.
property double NETGeographicLib::PolygonAreaRhumb::MajorRadius { double get() |
Definition at line 526 of file PolygonArea.h.