mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
61 lines
1.3 KiB
JavaScript
61 lines
1.3 KiB
JavaScript
import {AXIS, Matrix3, ORIGIN} from './l3space';
|
|
|
|
export default class CSys {
|
|
|
|
static fromNormalAndDir(origin, normal, dir) {
|
|
return new CSys(origin, dir, normal.cross(dir), normal)
|
|
}
|
|
|
|
static origin() {
|
|
return new CSys(ORIGIN.copy(), AXIS.X.copy(), AXIS.Y.copy(), AXIS.Z.copy());
|
|
}
|
|
|
|
constructor(origin, x, y, z) {
|
|
this.origin = origin;
|
|
this.x = x;
|
|
this.y = y;
|
|
this.z = z;
|
|
}
|
|
|
|
w() {
|
|
return this.z.dot(this.origin);
|
|
}
|
|
|
|
get outTransformation() {
|
|
if (!this._inTr) {
|
|
const basis = new Matrix3().setBasis([this.x, this.y, this.z]);
|
|
const translate = new Matrix3();
|
|
basis.tx = this.origin.x;
|
|
basis.ty = this.origin.y;
|
|
basis.tz = this.origin.z;
|
|
this._inTr = basis;//basis.combine(translate);
|
|
}
|
|
return this._inTr;
|
|
}
|
|
|
|
get inTransformation() {
|
|
if (!this._outTr) {
|
|
this._outTr = this.outTransformation.invert();
|
|
}
|
|
return this._outTr;
|
|
}
|
|
|
|
copy(csys) {
|
|
this.origin.setV(csys.origin);
|
|
this.x.setV(csys.x);
|
|
this.y.setV(csys.y);
|
|
this.z.setV(csys.z);
|
|
return this;
|
|
}
|
|
|
|
clone() {
|
|
return new CSys(this.origin.copy(), this.x.copy(), this.y.copy(), this.z.copy());
|
|
}
|
|
|
|
move(x, y, z) {
|
|
this.origin.set(x, y, z);
|
|
return this;
|
|
}
|
|
|
|
}
|
|
|