GlobeView.PointAtGroundHeight Methods
Gets the coordinates for a specified point and height.
Overload List
Name | Description | |
---|---|---|
Public method | PointAtGroundHeight(Point pixel, System.Double height) | Gets the coordinates for a specified point and height. |
Public method | PointAtGroundHeight(System.Int32 x, System.Int32 y, System.Double height) | Gets the coordinates for a specified point and height. |
PointAtGroundHeight(Point pixel, System.Double height)
Gets the coordinates for a specified point and height.Syntax
public Point PointAtGroundHeight (
Point pixel,
System.Double height
)
Parameters
The coordinates for a pixel in the drawable.
The height above the ground.
Return Value
The world coordinates for the specified point.
Remarks
This method is similar to GroundAt, but "elevates" the ground by height meters before doing the calculations. In other words, it will return 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. If no such point is found, the coordinate [-1.0e99, -1.0e99, -1.0e99] is returned.
Ground meshes read from AuxiliaryGroundInput will be ignored by this method.
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);
}
PointAtGroundHeight(System.Int32 x, System.Int32 y, System.Double height)
Gets the coordinates for a specified point and height.Syntax
public Point PointAtGroundHeight (
System.Int32 x,
System.Int32 y,
System.Double height
)
Parameters
The x drawable coordinate.
The y drawable coordinate.
The height above the ground.
Return Value
The world coordinates for the specified point.
Remarks
This method is similar to GroundAt, but "elevates" the ground by height meters before doing the calculations. In other words, it will return 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. If no such point is found, the coordinate [-1.0e99, -1.0e99, -1.0e99] is returned.
Ground meshes read from AuxiliaryGroundInput will be ignored by this method.
Platforms
Windows, Linux, Android