PointCloudAddRange Method (IEnumerablePoint3d, IEnumerableVector3d, IEnumerableColor) |
Appends a collection of points, normal vectors, and colors to this point cloud.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntaxpublic void AddRange(
IEnumerable<Point3d> points,
IEnumerable<Vector3d> normals,
IEnumerable<Color> colors
)
Public Sub AddRange (
points As IEnumerable(Of Point3d),
normals As IEnumerable(Of Vector3d),
colors As IEnumerable(Of Color)
)
Parameters
- points
- Type: System.Collections.GenericIEnumerablePoint3d
Points to append. - normals
- Type: System.Collections.GenericIEnumerableVector3d
Normal Vectors to append. - colors
- Type: System.Collections.GenericIEnumerableColor
Colors to append.
See Also