jsketcher/web/app/sketcher/shapes/elliptical-arc.js
2016-11-30 02:12:54 -08:00

19 lines
325 B
JavaScript

import {Ref} from './ref'
import {SketchObject} from './sketch-object'
import * as math from '../../math/math';
export class EllipticalArc extends SketchObject {
constructor(ep1, ep2, a, b) {
}
drawImpl(ctx, scale) {
}
normalDistance(aim) {
}
}
EllipticalArc.prototype._class = 'TCAD.TWO.EllipticalArc';