mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-08 01:13:27 +01:00
113 lines
2.6 KiB
JavaScript
113 lines
2.6 KiB
JavaScript
import {Surface} from '../surface'
|
|
import {Point} from '../point'
|
|
import {Line} from './line'
|
|
import {Matrix3, AXIS, BasisForPlane} from '../../../math/l3space'
|
|
import * as math from '../../../math/math'
|
|
|
|
export class Plane extends Surface {
|
|
|
|
constructor(normal, w) {
|
|
super();
|
|
this.normal = normal;
|
|
this.w = w;
|
|
}
|
|
|
|
calculateBasis() {
|
|
return BasisForPlane(this.normal);
|
|
}
|
|
|
|
basis() {
|
|
if (!this._basis) {
|
|
this._basis = this.calculateBasis();
|
|
}
|
|
return this._basis;
|
|
}
|
|
|
|
intersectForSameClass(other) {
|
|
return new Line.fromTwoPlanesIntersection(this, other);
|
|
}
|
|
|
|
translate(vector) {
|
|
return new Plane(this.normal, this.normal.dot(this.normal.multiply(this.w)._plus(vector)));
|
|
}
|
|
|
|
invert() {
|
|
return new Plane(this.normal.multiply(-1), - this.w);
|
|
}
|
|
|
|
get2DTransformation() {
|
|
if (!this.__2dTr) {
|
|
this.__2dTr = this.get3DTransformation().invert();
|
|
}
|
|
return this.__2dTr;
|
|
}
|
|
|
|
get3DTransformation() {
|
|
if (!this.__3dTr) {
|
|
const basis = new Matrix3().setBasis(this.basis());
|
|
const translate = new Matrix3();
|
|
translate.tz = this.w
|
|
this.__3dTr = basis.combine(translate);
|
|
// this.__3dTr.tz = this.w;
|
|
}
|
|
return this.__3dTr;
|
|
}
|
|
|
|
coplanarUnsignedForSameClass(other, tol) {
|
|
return math.areVectorsEqual(this.normal.multiply(this.w), other.normal.multiply(other.w), tol);
|
|
//TODO: store this.normal.multiply(this.w) in a field since it's constant value
|
|
}
|
|
|
|
equalsForSameClass(other, tol) {
|
|
return math.areVectorsEqual(this.normal, other.normal, tol) &&
|
|
math.areEqual(this.w, other.w, tol);
|
|
}
|
|
|
|
toParametricForm() {
|
|
if (!this.__parametricForm) {
|
|
const basis = BasisForPlane(this.normal);
|
|
this.__parametricForm = new ParametricPlane(this.normal.multiply(this.w), basis.x, basis.y);
|
|
}
|
|
return this.__parametricForm;
|
|
}
|
|
|
|
toUV(point) {
|
|
return this.get2DTransformation().apply(point);
|
|
}
|
|
|
|
fromUV(u, v) {
|
|
return this.get3DTransformation()._apply(new Point(u, v, 0));
|
|
}
|
|
|
|
domainU() {
|
|
return [Number.MIN_VALUE, Number.MAX_VALUE];
|
|
}
|
|
|
|
domainV() {
|
|
return [Number.MIN_VALUE, Number.MAX_VALUE];
|
|
}
|
|
|
|
classifyCognateCurve(line, tol) {
|
|
const parallel = math.areEqual(line.v.dot(this.normal), 0, tol);
|
|
const pointOnPlane = math.areEqual(this.normal.dot(line.p0), this.w, tol);
|
|
return {
|
|
hit: !parallel || pointOnPlane,
|
|
parallel
|
|
}
|
|
}
|
|
}
|
|
|
|
Plane.prototype.isPlane = true;
|
|
|
|
class ParametricPlane {
|
|
|
|
constructor(r0, r1, r2) {
|
|
this.r0 = r0;
|
|
this.r1 = r1;
|
|
this.r2 = r2;
|
|
}
|
|
|
|
equation(u, v) {
|
|
return this.r0 + this.r1.multiply(u) + this.r2.multiply(v);
|
|
}
|
|
}
|