PointCloudInsertRange Method |
Append a collection of points to this point cloud.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public void InsertRange(
int index,
IEnumerable<Point3d> points
)
Public Sub InsertRange (
index As Integer,
points As IEnumerable(Of Point3d)
)
Parameters
- index
- Type: SystemInt32
Index at which to insert the new collection. - points
- Type: System.Collections.GenericIEnumerablePoint3d
Points to append.
See Also