Simply3DScan
ColorPoint3D.cs
Go to the documentation of this file.
1 using System.Drawing;
2 
3 namespace SharedObjects
4 {
8  public class ColorPoint3D
9  {
16  public double X { get; set; }
23  public double Y { get; set; }
30  public double Z { get; set; }
31 
38  public Color Color { get; set; }
39 
46  public ColorPoint3D(double x, double y, double z)
47  {
48  this.X = x;
49  this.Y = y;
50  this.Z = z;
51  }
52  }
53 }
double Z
Gets or sets the z.
Definition: ColorPoint3D.cs:30
double Y
Gets or sets the y.
Definition: ColorPoint3D.cs:23
double X
Gets or sets the x.
Definition: ColorPoint3D.cs:16
Color Color
Gets or sets the color.
Definition: ColorPoint3D.cs:38
ColorPoint3D(double x, double y, double z)
Initializes a new instance of the ColorPoint3D class.
Definition: ColorPoint3D.cs:46