GH_PointUtilProjectPointsToPlane Method |
Project a list of points onto the plane. The result will be points in plane-uv coordinates.
Namespace:
Grasshopper.Kernel.Types
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax public static List<GH_Point> ProjectPointsToPlane(
IEnumerable<GH_Point> pts,
Plane plane,
bool include_nulls
)
Public Shared Function ProjectPointsToPlane (
pts As IEnumerable(Of GH_Point),
plane As Plane,
include_nulls As Boolean
) As List(Of GH_Point)
Parameters
- pts
- Type: System.Collections.GenericIEnumerableGH_Point
Points to project. - plane
- Type: Plane
Plane to project onto. - include_nulls
- Type: SystemBoolean
If True, nulls in the pts list are maintained.
Return Value
Type:
ListGH_PointSee Also