Class PointCloud
Pointcloud object
Inheritance
System.Object
PointCloud
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Marus.Utils
Assembly: cs.temp.dll.dll
Syntax
public class PointCloud
Constructors
PointCloud()
Declaration
public PointCloud()
PointCloud(Vector3[])
Declaration
public PointCloud(Vector3[] points)
Parameters
Type | Name | Description |
---|---|---|
Vector3[] | points |
PointCloud(Vector3[], Color[])
Declaration
public PointCloud(Vector3[] points, Color[] colors)
Parameters
Type | Name | Description |
---|---|---|
Vector3[] | points | |
Color[] | colors |
PointCloud(Vector3[], Color[], Vector3[])
Declaration
public PointCloud(Vector3[] points, Color[] colors, Vector3[] normals)
Parameters
Type | Name | Description |
---|---|---|
Vector3[] | points | |
Color[] | colors | |
Vector3[] | normals |
PointCloud(Vector3[], Vector3[])
Declaration
public PointCloud(Vector3[] points, Vector3[] normals)
Parameters
Type | Name | Description |
---|---|---|
Vector3[] | points | |
Vector3[] | normals |
Fields
Colors
Holds color data
Declaration
public Color[] Colors
Field Value
Type | Description |
---|---|
Color[] |
Length
Number of points
Declaration
public int Length
Field Value
Type | Description |
---|---|
System.Int32 |
Normals
Holds normals data (x, y, z)
Declaration
public Vector3[] Normals
Field Value
Type | Description |
---|---|
Vector3[] |
Points
Holds point data (x, y, z)
Declaration
public Vector3[] Points
Field Value
Type | Description |
---|---|
Vector3[] |