nowjs-core
Version:
NowCanDo Javascript Core [nowjs-core] is a library written by TypeScript code maintains under Apache 2.0 licence
19 lines (18 loc) • 397 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Point3D_1 = require("./Point3D");
class Point4D extends Point3D_1.Point3D {
constructor(x, y, z, w) {
super(x, y);
this.w = w;
if (!w)
this.w = 0;
}
get W() {
return this.w;
}
set W(value) {
this.w = value;
}
}
exports.Point4D = Point4D;