| ObjectTableAddOrderedPointCloud Method  | 
 Adds a point cloud object to the document.
 
    Namespace: 
   Rhino.DocObjects.Tables
    Assembly:
   RhinoCommon (in RhinoCommon.dll)
Since: 8.0
 Syntax
Syntaxpublic Guid AddOrderedPointCloud(
	int xCt,
	int yCt,
	int zCt,
	Point3d min,
	Point3d max,
	ObjectAttributes attributes,
	HistoryRecord history,
	bool reference
)
Public Function AddOrderedPointCloud ( 
	xCt As Integer,
	yCt As Integer,
	zCt As Integer,
	min As Point3d,
	max As Point3d,
	attributes As ObjectAttributes,
	history As HistoryRecord,
	reference As Boolean
) As Guid
Parameters
- xCt
- Type: SystemInt32
 Number of points in X dir.
- yCt
- Type: SystemInt32
 Number of points in Y dir.
- zCt
- Type: SystemInt32
 Number of points in Z dir.
- min
- Type: Rhino.GeometryPoint3d
 point at x0,y0,z0 of bounding box of the pointcloud
- max
- Type: Rhino.GeometryPoint3d
 point at x1,y1,z1 of bounding box of the pointcloud
- attributes
- Type: Rhino.DocObjectsObjectAttributes
 Attributes to apply to point cloud. null is acceptable
- history
- Type: Rhino.DocObjectsHistoryRecord
 history associated with this point cloud. null is acceptable
- reference
- Type: SystemBoolean
 true if the object is from a reference file.  Reference objects do
            not persist in archives
Return Value
Type: 
GuidA unique identifier for the object.
 See Also
See Also