GH_PointUtilRemapPointsToPlane Method |
Remap a list of points onto the plane. This operation equals a ChangeBasisXForm for each point.
Namespace:
Grasshopper.Kernel.Types
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax public static List<GH_Point> RemapPointsToPlane(
IEnumerable<GH_Point> pts,
Plane plane,
bool include_nulls
)
Public Shared Function RemapPointsToPlane (
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 remap. - plane
- Type: Plane
Plane to remap with. - include_nulls
- Type: SystemBoolean
If True, nulls in the pts list are maintained.
Return Value
Type:
ListGH_PointSee Also