UNPKG
acc-viewer
Version:
latest (0.8.28)
0.8.28
0.8.27
0.8.26
0.8.25
0.8.24
Acc Viewer
acc-viewer
/
source
/
engine
/
geometry
/
coord4d.js
16 lines
(14 loc)
•
191 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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); } }