UNPKG
online-3d-viewer
Version:
latest (0.18.0)
0.18.0
0.17.0
0.16.0
0.15.0
0.14.0
0.13.0
0.12.0
0.11.0
0.10.0
0.9.0
0.8.25
0.8.24
0.8.23
0.8.22
0.8.21
0.8.20
0.8.19
0.8.18
0.8.17
0.8.16
0.8.15
0.8.14
0.8.13
0.8.11
Online 3D Viewer
github.com/kovacsv/Online3DViewer
kovacsv/Online3DViewer
online-3d-viewer
/
source
/
engine
/
geometry
/
coord4d.js
16 lines
(14 loc)
•
206 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); } }