18 lines
346 B
C#
18 lines
346 B
C#
namespace Unity.XR.PICO.TOBSupport
|
|
{
|
|
public class Point3D
|
|
{
|
|
public double x;
|
|
public double y;
|
|
public double z;
|
|
|
|
public Point3D()
|
|
{
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"Point3D:{nameof(x)}: {x}, {nameof(y)}: {y}, {nameof(z)}: {z}";
|
|
}
|
|
}
|
|
} |