jsketcher/web/app/brep/geom/curve.js
2017-01-09 03:19:41 -08:00

15 lines
No EOL
169 B
JavaScript

export class Curve {
constructor() {
}
intersectCurve(curve) {
throw 'not implemented';
}
parametricEquation(t) {
throw 'not implemented';
}
}