PointCloudInsert Method (Int32, Point3d, Vector3d, Color, Double) |
Inserts a new point into the point list.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 7.5
Syntax public void Insert(
int index,
Point3d point,
Vector3d normal,
Color color,
double value
)
Public Sub Insert (
index As Integer,
point As Point3d,
normal As Vector3d,
color As Color,
value As Double
)
Parameters
- index
- Type: SystemInt32
Insertion index. - point
- Type: Rhino.GeometryPoint3d
Point to append. - normal
- Type: Rhino.GeometryVector3d
Normal vector of new point. - color
- Type: System.DrawingColor
Color of new point. - value
- Type: SystemDouble
An extra value of new point.
An extra values can be used to store a user-defined value, such as intensity.
See Also