IntersectionProjectPointsToMeshes Method |
Rhino 5 for Windows
Projects points onto meshes.
Namespace: Rhino.Geometry.IntersectAssembly: RhinoCommon (in RhinoCommon.dll) Version: 5.1.30000.17 (5.13.60913.21340)
Syntaxpublic static Point3d[] ProjectPointsToMeshes(
IEnumerable<Mesh> meshes,
IEnumerable<Point3d> points,
Vector3d direction,
double tolerance
)
Public Shared Function ProjectPointsToMeshes (
meshes As IEnumerable(Of Mesh),
points As IEnumerable(Of Point3d),
direction As Vector3d,
tolerance As Double
) As Point3d()
Parameters
- meshes
- Type: System.Collections.GenericIEnumerableMesh
the meshes to project on to. - points
- Type: System.Collections.GenericIEnumerablePoint3d
the points to project. - direction
- Type: Rhino.GeometryVector3d
the direction to project. - tolerance
- Type: SystemDouble
Projection tolerances used for culling close points and for line-mesh intersection.
Return Value
Type:
Point3d
Array of projected points, or null in case of any error or invalid input.
See Also