|
VivinityMeshHasClosestPoint Method
|
Determine whether there exists a closest point to any mesh whose distance
to the test_point is smaller or equal than limit_dist.
Namespace:
Karamba.GHopper.Geometry
Assembly:
karambaGH (in karambaGH.dll) Version: 1.15.0.0 (1.15.0.0)
Syntaxpublic bool HasClosestPoint(
Point3 testPoint,
double limit_dist
)
Public Function HasClosestPoint (
testPoint As Point3,
limit_dist As Double
) As Boolean
public:
bool HasClosestPoint(
Point3 testPoint,
double limit_dist
)
member HasClosestPoint :
testPoint : Point3 *
limit_dist : float -> bool
Parameters
- testPoint
- Type: Karamba.GeometryPoint3
Test point. - limit_dist
- Type: SystemDouble
[Missing <param name="limit_dist"/> documentation for "M:Karamba.GHopper.Geometry.VivinityMesh.HasClosestPoint(Karamba.Geometry.Point3,System.Double)"]
Return Value
Type:
BooleanTrue if such a point exists, false otherwise.
See Also