Skip to content
Snippets Groups Projects
Commit ec3c7ad2 authored by Miłosz Grocholewski's avatar Miłosz Grocholewski
Browse files

fix(vector-map): correct first point assignment in Bezier curve

parent cb6be33b
No related branches found
No related tags found
8 merge requests!296Feat/code optimization,!295refactor(map): change view zoomFactor (zoom step),!292fix(vector-map): fix center point calculation,!291feat(vector-map): add drawing for reaction modifiers lines,!290feat(vector-map): implement reaction operator drawing,!288feat(vector-map): implement reactions of three elements,!286feat(vector-map): implement line scaling,!285feat(vector-map): implement reaction square element
Pipeline #97119 passed
...@@ -45,6 +45,8 @@ export default function getPolygonCoords({ ...@@ -45,6 +45,8 @@ export default function getPolygonCoords({
return [[...lastPoint]]; return [[...lastPoint]];
} }
const { p1, p2, p3 } = getCurveCoords({ x, y, point, height, width, pointToProjection }); const { p1, p2, p3 } = getCurveCoords({ x, y, point, height, width, pointToProjection });
return getBezierCurve({ p0: lastPoint, p1, p2, p3, numPoints: 20 }); const p0 = lastPoint;
lastPoint = p3;
return getBezierCurve({ p0, p1, p2, p3, numPoints: 20 });
}); });
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment