UNPKG
angular-3d-viewer
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.0
Angular 3D Viewer
github.com/anishprvn/Online3DViewerAngular
anishprvn/Online3DViewerAngular
angular-3d-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); } }