Click or drag to resize

PointCloudExpertGetValues Method

Expert tool to get all values of a point cloud item. This method minimizes the number of pInvoke function calls.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntax
public bool ExpertGetValues(
	int index,
	out Point3d location,
	out Vector3d normal,
	out Color color,
	out double extra,
	out bool hidden
)

Parameters

index
Type: SystemInt32
The index of the point cloud item.
location
Type: Rhino.GeometryPoint3d
Output location of the point cloud item.
normal
Type: Rhino.GeometryVector3d
Output normal vector of the point cloud item.
color
Type: System.DrawingColor
Output color of the point cloud item.
extra
Type: SystemDouble
Extra value of the point cloud item.
hidden
Type: SystemBoolean
Output hidden flag of the point cloud item.

Return Value

Type: Boolean
True on success.
See Also