mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-12 03:13:24 +01:00
19 lines
325 B
JavaScript
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';
|