ModelHandle/source/engine/geometry/coord4d.js
2022-01-10 18:10:51 +01:00

16 lines
191 B
JavaScript

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