Click or drag to resize
Ab4d.SharpEngine logo

LineSelectorDataGetClosestPositionOnLine(Vector2) Method

Gets the Vector3 that represents the closest position of the line segment with index LastLinePositionIndex to the camera ray that is created from the specified screenPosition. This method can be used only when the LineSelectorData was created with a SceneView as a constructor parameter. When the camera ray cannot be constructed, then Vector3 with float.NaN is returned.

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public Vector3 GetClosestPositionOnLine(
	Vector2 screenPosition
)

Parameters

screenPosition  Vector2
2D position that will be used to calculate the distance to this line

Return Value

Vector3
closest position to the specified screenPosition or Vector3 with float.NaN in case the closest position cannot be calculated
See Also