GlobeView.PointAtHeight Methods
Gets the coordinates for a specified point and height.
Overload List
Name | Description | |
---|---|---|
Public method | PointAtHeight(Point pixel, System.Double height) | Gets the coordinates for a specified point and height. |
Public method | PointAtHeight(System.Int32 x, System.Int32 y, System.Double height) | Gets the coordinates for a specified point and height. |
PointAtHeight(Point pixel, System.Double height)
Gets the coordinates for a specified point and height.Syntax
public Point PointAtHeight (
Point pixel,
System.Double height
)
Parameters
The coordinates for a pixel in the drawable.
The height expressed in meters; see also What are the units of numbers?
Return Value
The world coordinates for the specified point.
Remarks
Returns the first point along the ray from the camera to the specified screen position that is height meters above sea level. In a GlobeView it will be the intersection of the ray and a sphere at the specified height.
If no such intersection is found, the coordinate [-1.0e99, -1.0e99, -1.0e99] is returned.
Example
// Check if the direct flight to the mouse position is safe.
public static bool IsDirectFlightToMousePositionSafe(
GlobeView globeView, Point mousePixelPosition,
double minimumClearanceToGround, bool groundRelated)
{
// Create a point for the calculation result
Point groundPoint;
// Check if the given minimum clearance is ground based
if (groundRelated == true)
{
// Calculate the first point along the ray from the camera to the specified
// screen position with a height above ground that is less than or equal to
// height meters.
groundPoint = globeView.PointAtGroundHeight(mousePixelPosition, minimumClearanceToGround);
}
else
{
// Calculate the first point along the ray from the camera to the specified
// screen position that is height meters above sea level.
groundPoint = globeView.PointAtHeight(mousePixelPosition, minimumClearanceToGround);
}
// Check if the ground point is valid.
// If no intersection is found, the coordinate [-1.0e99, -1.0e99, -1.0e99] is returned.
return groundPoint == new Point(-1.0e99, -1.0e99, -1.0e99);
}
PointAtHeight(System.Int32 x, System.Int32 y, System.Double height)
Gets the coordinates for a specified point and height.Syntax
public Point PointAtHeight (
System.Int32 x,
System.Int32 y,
System.Double height
)
Parameters
The x drawable coordinate.
The y drawable coordinate.
The height expressed in meters; see also What are the units of numbers?
Return Value
The world coordinates for the specified point.
Remarks
Returns the first point along the ray from the camera to the specified screen position that is height meters above sea level. In a GlobeView it will be the intersection of the ray and a sphere at the specified height.
If no such intersection is found, the coordinate [-1.0e99, -1.0e99, -1.0e99] is returned.
Platforms
Windows, Linux, Android