ModelHandle/source/geometry/coord4d.js
2021-12-28 16:44:00 +01:00

16 lines
193 B
JavaScript

OV.Coord4D = class
{
constructor (x, y, z, w)
{
this.x = x;
this.y = y;
this.z = z;
this.w = w;
}
Clone ()
{
return new OV.Coord4D (this.x, this.y, this.z, this.w);
}
};