1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-13 04:04:28 +02:00

Update content.en-GB.md

This commit is contained in:
Mislav Blažević
2017-05-13 01:27:03 +02:00
committed by GitHub
parent b52c42632c
commit 488c5b000d

View File

@@ -30,7 +30,7 @@ And done, that's the algorithm implemented. That just leaves drawing the resulti
``` ```
function drawFlattenedCurve(curve, segmentCount): function drawFlattenedCurve(curve, segmentCount):
coordinates = flattenCurve(curve, segmentCount) coordinates = flattenCurve(curve, segmentCount)
coord = coordinates[0], _coords; coords = coordinates[0], _coords;
for(i=1; i < coordinates.length; i++): for(i=1; i < coordinates.length; i++):
_coords = coordinates[i] _coords = coordinates[i]
line(coords, _coords) line(coords, _coords)