mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 00:45:08 +01:00
24 lines
249 B
JavaScript
24 lines
249 B
JavaScript
|
|
export default class ParametricCurve {
|
|
|
|
domain() { }
|
|
|
|
degree() { }
|
|
|
|
degree1Tess() {}
|
|
|
|
eval(u, num) { }
|
|
|
|
point(param) { }
|
|
|
|
param(point) { }
|
|
|
|
transform(tr) { }
|
|
|
|
optimalSplits() { }
|
|
|
|
normalizeParametrization() { }
|
|
|
|
invert() { }
|
|
}
|
|
|