mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 10:25:36 +01:00
make bezier curve approximation more fine
This commit is contained in:
parent
aaca1c9141
commit
a8593fbd76
1 changed files with 1 additions and 1 deletions
|
|
@ -156,7 +156,7 @@ export function approxCircle(c, r, resolution) {
|
|||
}
|
||||
|
||||
export function approxBezierCurve(a, b, cp1, cp2, resolution) {
|
||||
return LUT(a, b, cp1, cp2, 1);
|
||||
return LUT(a, b, cp1, cp2, 10);
|
||||
}
|
||||
|
||||
export function getSketchedPolygons3D(app, face) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue