Click or drag to resize

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
)

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_Point
See Also