mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-13 03:43:01 +01:00
15 lines
No EOL
169 B
JavaScript
15 lines
No EOL
169 B
JavaScript
|
|
export class Curve {
|
|
|
|
constructor() {
|
|
|
|
}
|
|
|
|
intersectCurve(curve) {
|
|
throw 'not implemented';
|
|
}
|
|
|
|
parametricEquation(t) {
|
|
throw 'not implemented';
|
|
}
|
|
} |