mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 18:36:30 +01:00
remove unused data-structure
This commit is contained in:
parent
e6d339a3b0
commit
dd1a745864
1 changed files with 0 additions and 7 deletions
|
|
@ -31,10 +31,3 @@ export function compute(t, from, to, controlPoint1, controlPoint2) {
|
|||
a * p0.z + b * p1.z + c * p2.z + d * p3.z
|
||||
);
|
||||
}
|
||||
|
||||
function CurveData(a, b, cp1, cp2) {
|
||||
this.a = a;
|
||||
this.b = b;
|
||||
this.cp1 = cp1;
|
||||
this.cp2 = cp2;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue