IMeshClosestMeshPoint Method
Gets the point on the mesh that is closest to a given test point. Similar to the
ClosestPoint function except this returns a MeshPoint class which includes
extra information beyond just the location of the closest point.
Namespace: Karamba.GeometryAssembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
Point3 ClosestMeshPoint(
Point3 testPoint,
double maximumDistance
)
Function ClosestMeshPoint (
testPoint As Point3,
maximumDistance As Double
) As Point3
Point3 ClosestMeshPoint(
Point3 testPoint,
double maximumDistance
)
abstract ClosestMeshPoint :
testPoint : Point3 *
maximumDistance : float -> Point3
- testPoint Point3
- Point to test for proximity.
- maximumDistance Double
- Optional upper bound on the distance from test point to the mesh.
If you are only interested in finding a point Q on the mesh when
testPoint.DistanceTo(Q) < maximumDistance,
then set maximumDistance to that value.
This parameter is ignored if you pass 0.0 for a maximumDistance.
Point3closest point information on success.