mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
345 lines
8.9 KiB
JavaScript
345 lines
8.9 KiB
JavaScript
import verb from 'verb-nurbs'
|
|
import BrepCurve from '../../brep/geom/curves/brepCurve';
|
|
import NurbsCurve from '../../brep/geom/curves/nurbsCurve';
|
|
import {Point} from '../../brep/geom/point'
|
|
import {LUT} from '../../math/bezier-cubic'
|
|
import {distanceAB, isCCW, makeAngle0_360} from '../../math/math'
|
|
import {normalizeCurveEnds} from '../../brep/geom/impl/nurbs-ext';
|
|
import Vector from '../../../../modules/math/vector';
|
|
import {AXIS, ORIGIN} from '../../../../modules/math/l3space';
|
|
|
|
const RESOLUTION = 20;
|
|
|
|
class SketchPrimitive {
|
|
constructor(id) {
|
|
this.id = id;
|
|
this.inverted = false;
|
|
}
|
|
|
|
invert() {
|
|
this.inverted = !this.inverted;
|
|
}
|
|
|
|
tessellate(resolution) {
|
|
const tessellation = this.tessellateImpl(resolution);
|
|
if (this.inverted) {
|
|
tessellation.reverse();
|
|
}
|
|
return tessellation;
|
|
}
|
|
|
|
get isCurve() {
|
|
return this.constructor.name !== 'Segment';
|
|
}
|
|
|
|
get isSegment() {
|
|
return !this.isCurve;
|
|
}
|
|
|
|
toNurbs(csys) {
|
|
let verbNurbs = this.toVerbNurbs(csys.outTransformation.apply, csys);
|
|
if (this.inverted) {
|
|
verbNurbs = verbNurbs.reverse();
|
|
}
|
|
let data = verbNurbs.asNurbs();
|
|
normalizeCurveEnds(data);
|
|
verbNurbs = new verb.geom.NurbsCurve(data);
|
|
|
|
return new BrepCurve(new NurbsCurve(verbNurbs));
|
|
}
|
|
|
|
toVerbNurbs(tr) {
|
|
throw 'not implemented'
|
|
}
|
|
|
|
tessellateImpl() {
|
|
throw 'not implemented'
|
|
}
|
|
}
|
|
|
|
export class Segment extends SketchPrimitive {
|
|
constructor(id, a, b) {
|
|
super(id);
|
|
this.a = a;
|
|
this.b = b;
|
|
}
|
|
|
|
tessellateImpl(resolution) {
|
|
return [this.a, this.b];
|
|
}
|
|
|
|
toVerbNurbs(tr) {
|
|
return new verb.geom.Line(tr(this.a).data(), tr(this.b).data());
|
|
}
|
|
}
|
|
|
|
export class Arc extends SketchPrimitive {
|
|
constructor(id, a, b, c) {
|
|
super(id);
|
|
this.a = a;
|
|
this.b = b;
|
|
this.c = c;
|
|
}
|
|
|
|
tessellateImpl(resolution) {
|
|
return Arc.tessellateArc(this.a, this.b, this.c, resolution);
|
|
}
|
|
|
|
static tessellateArc(ao, bo, c, resolution) {
|
|
var a = ao.minus(c);
|
|
var b = bo.minus(c);
|
|
var points = [ao];
|
|
var abAngle = Math.atan2(b.y, b.x) - Math.atan2(a.y, a.x);
|
|
if (abAngle > Math.PI * 2) abAngle = Math.PI / 2 - abAngle;
|
|
if (abAngle < 0) abAngle = Math.PI * 2 + abAngle;
|
|
|
|
var r = a.length();
|
|
resolution = 1;
|
|
//var step = Math.acos(1 - ((resolution * resolution) / (2 * r * r)));
|
|
var step = resolution / (2 * Math.PI);
|
|
var k = Math.round(abAngle / step);
|
|
var angle = Math.atan2(a.y, a.x) + step;
|
|
|
|
for (var i = 0; i < k - 1; ++i) {
|
|
points.push(new Point(c.x + r*Math.cos(angle), c.y + r*Math.sin(angle)));
|
|
angle += step;
|
|
}
|
|
points.push(bo);
|
|
return points;
|
|
}
|
|
|
|
toVerbNurbs(tr, csys) {
|
|
|
|
const basisX = csys.x;
|
|
const basisY = csys.y;
|
|
|
|
const startAngle = makeAngle0_360(Math.atan2(this.a.y - this.c.y, this.a.x - this.c.x));
|
|
const endAngle = makeAngle0_360(Math.atan2(this.b.y - this.c.y, this.b.x - this.c.x));
|
|
|
|
let angle = endAngle - startAngle;
|
|
if (angle < 0) {
|
|
angle = Math.PI * 2 + angle;
|
|
}
|
|
function pointAtAngle(angle) {
|
|
const dx = basisX.multiply(Math.cos(angle));
|
|
const dy = basisY.multiply(Math.sin(angle));
|
|
return dx.plus(dy);
|
|
}
|
|
const xAxis = pointAtAngle(startAngle);
|
|
const yAxis = pointAtAngle(startAngle + Math.PI * 0.5);
|
|
|
|
let arc = new verb.geom.Arc(tr(this.c).data(), xAxis.data(), yAxis.data(), distanceAB(this.c, this.a), 0, Math.abs(angle));
|
|
|
|
return adjustEnds(arc, tr(this.a), tr(this.b))
|
|
}
|
|
}
|
|
|
|
export class BezierCurve extends SketchPrimitive {
|
|
constructor(id, a, b, cp1, cp2) {
|
|
super(id);
|
|
this.a = a;
|
|
this.b = b;
|
|
this.cp1 = cp1;
|
|
this.cp2 = cp2;
|
|
}
|
|
|
|
tessellateImpl(resolution) {
|
|
return LUT(this.a, this.b, this.cp1, this.cp2, 10);
|
|
}
|
|
|
|
toVerbNurbs(tr) {
|
|
return new verb.geom.BezierCurve([tr(this.a).data(), tr(this.cp1).data(), tr(this.cp2).data(), tr(this.b).data()], null);
|
|
}
|
|
}
|
|
|
|
export class EllipticalArc extends SketchPrimitive {
|
|
constructor(id, ep1, ep2, a, b, r) {
|
|
super(id);
|
|
this.ep1 = ep1;
|
|
this.ep2 = ep2;
|
|
this.a = a;
|
|
this.b = b;
|
|
this.r = r;
|
|
}
|
|
|
|
tessellateImpl(resolution) {
|
|
return EllipticalArc.tessEllipticalArc(this.ep1, this.ep2, this.a, this.b, this.r, resolution);
|
|
}
|
|
|
|
static tessEllipticalArc(ep1, ep2, ao, bo, radiusY, resolution) {
|
|
const axisX = ep2.minus(ep1);
|
|
const radiusX = axisX.length() * 0.5;
|
|
axisX._normalize();
|
|
const c = ep1.plus(axisX.multiply(radiusX));
|
|
const a = ao.minus(c);
|
|
const b = bo.minus(c);
|
|
const points = [ao];
|
|
const rotation = Math.atan2(axisX.y, axisX.x);
|
|
let abAngle = Math.atan2(b.y, b.x) - Math.atan2(a.y, a.x);
|
|
if (abAngle > Math.PI * 2) abAngle = Math.PI / 2 - abAngle;
|
|
if (abAngle < 0) abAngle = Math.PI * 2 + abAngle;
|
|
|
|
const sq = (a) => a * a;
|
|
|
|
resolution = 1;
|
|
|
|
const step = resolution / (2 * Math.PI);
|
|
const k = Math.round(abAngle / step);
|
|
let angle = Math.atan2(a.y, a.x) + step - rotation;
|
|
|
|
for (let i = 0; i < k - 1; ++i) {
|
|
const r = Math.sqrt(1/( sq(Math.cos(angle)/radiusX) + sq(Math.sin(angle)/radiusY)));
|
|
points.push(new Point(c.x + r*Math.cos(angle + rotation), c.y + r*Math.sin(angle + rotation)));
|
|
angle += step;
|
|
}
|
|
points.push(bo);
|
|
return points;
|
|
}
|
|
|
|
toVerbNurbs(tr) {
|
|
const xAxis = this.ep2.minus(this.ep1)._multiply(0.5);
|
|
const yAxis = new Vector(xAxis.y, xAxis.x)._normalize()._multiply(this.r) ;
|
|
const center = this.ep1.plus(xAxis);
|
|
|
|
const startAngle = makeAngle0_360(Math.atan2(this.a.y - center.y, this.a.x - center.x));
|
|
const endAngle = makeAngle0_360(Math.atan2(this.b.y - center.y, this.b.x - center.x));
|
|
|
|
let arc = new verb.geom.EllipseArc(tr(center).data(), tr(xAxis).data(), tr(yAxis).data(), startAngle, endAngle);
|
|
return adjustEnds(arc, tr(this.a), tr(this.b))
|
|
}
|
|
}
|
|
|
|
export class Circle extends SketchPrimitive {
|
|
constructor(id, c, r) {
|
|
super(id);
|
|
this.c = c;
|
|
this.r = r;
|
|
}
|
|
|
|
tessellateImpl(resolution) {
|
|
return Circle.tessCircle(this.c, this.r, resolution);
|
|
}
|
|
|
|
static tessCircle(c, r, resolution) {
|
|
var points = [];
|
|
resolution = 1;
|
|
//var step = Math.acos(1 - ((resolution * resolution) / (2 * r * r)));
|
|
var step = resolution / (2 * Math.PI);
|
|
var k = Math.round((2 * Math.PI) / step);
|
|
|
|
for (var i = 0, angle = 0; i < k; ++i, angle += step) {
|
|
points.push(new Point(c.x + r*Math.cos(angle), c.y + r*Math.sin(angle)));
|
|
}
|
|
points.push(points[0]); // close it
|
|
return points;
|
|
}
|
|
|
|
|
|
toVerbNurbs(tr, csys) {
|
|
const basisX = csys.x;
|
|
const basisY = csys.y;
|
|
return new verb.geom.Circle(tr(this.c).data(), basisX.data(), basisY.data(), this.r);
|
|
}
|
|
}
|
|
|
|
export class Ellipse extends SketchPrimitive {
|
|
constructor(id, ep1, ep2, r) {
|
|
super(id);
|
|
this.ep1 = ep1;
|
|
this.ep2 = ep2;
|
|
this.r = r;
|
|
}
|
|
|
|
tessellateImpl(resolution) {
|
|
return EllipticalArc.tessEllipticalArc(this.ep1, this.ep2, this.ep1, this.ep1, this.r, resolution);
|
|
}
|
|
|
|
toVerbNurbs(tr) {
|
|
const xAxis = this.ep2.minus(this.ep1)._multiply(0.5);
|
|
const yAxis = new Vector(xAxis.y, xAxis.x)._normalize()._multiply(this.r) ;
|
|
const center = this.ep1.plus(xAxis);
|
|
return new verb.geom.Ellipse(tr(center).data(), tr(xAxis).data(), tr(yAxis).data());
|
|
}
|
|
}
|
|
|
|
export class Contour {
|
|
|
|
constructor() {
|
|
this.segments = [];
|
|
}
|
|
|
|
add(obj) {
|
|
this.segments.push(obj);
|
|
}
|
|
|
|
tessellateInCoordinateSystem(csys) {
|
|
let out = [];
|
|
for (let segIdx = 0; segIdx < this.segments.length; ++segIdx) {
|
|
let segment = this.segments[segIdx];
|
|
segment.toNurbs(csys).tessellate().forEach(p => out.push(p));
|
|
out.pop();
|
|
}
|
|
return out;
|
|
}
|
|
|
|
transferInCoordinateSystem(csys) {
|
|
const cc = [];
|
|
for (let segIdx = 0; segIdx < this.segments.length; ++segIdx) {
|
|
let segment = this.segments[segIdx];
|
|
cc.push(segment.toNurbs(csys));
|
|
}
|
|
return cc;
|
|
}
|
|
|
|
tessellate(resolution) {
|
|
const tessellation = [];
|
|
for (let segment of this.segments) {
|
|
const segmentTessellation = segment.tessellate(resolution);
|
|
//skip last one cuz it's guaranteed to be closed
|
|
for (let i = 0; i < segmentTessellation.length - 1; ++i) {
|
|
tessellation.push(segmentTessellation[i]);
|
|
}
|
|
}
|
|
return tessellation;
|
|
}
|
|
|
|
isCCW() {
|
|
return isCCW(this.tessellate(10));
|
|
}
|
|
|
|
reverse() {
|
|
this.segments.reverse();
|
|
this.segments.forEach(s => s.invert());
|
|
}
|
|
}
|
|
|
|
class CompositeCurve {
|
|
|
|
constructor() {
|
|
this.curves = [];
|
|
this.points = [];
|
|
this.groups = [];
|
|
}
|
|
|
|
add(curve, point, group) {
|
|
this.curves.push(curve);
|
|
this.points.push(point);
|
|
this.groups.push(group);
|
|
}
|
|
}
|
|
|
|
function adjustEnds(arc, a, b) {
|
|
let data = arc.asNurbs();
|
|
|
|
function setHomoPoint(homoPoint, vector) {
|
|
homoPoint[0] = vector.x * homoPoint[3];
|
|
homoPoint[1] = vector.y * homoPoint[3];
|
|
homoPoint[2] = vector.z * homoPoint[3];
|
|
}
|
|
|
|
setHomoPoint(data.controlPoints[0], a);
|
|
setHomoPoint(data.controlPoints[data.controlPoints.length - 1], b);
|
|
|
|
return new verb.geom.NurbsCurve(data);
|
|
}
|
|
|