File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2984,7 +2984,7 @@ p5.RendererGL.prototype.bezierVertex = function(...args) {
2984
2984
this . _lookUpTableBezier = [ ] ;
2985
2985
this . _lutBezierDetail = this . _pInst . _curveDetail ;
2986
2986
const step = 1 / this . _lutBezierDetail ;
2987
- let start = 0 ;
2987
+ let start = step ;
2988
2988
let end = 1 ;
2989
2989
let j = 0 ;
2990
2990
while ( start < 1 ) {
@@ -3144,7 +3144,7 @@ p5.RendererGL.prototype.quadraticVertex = function(...args) {
3144
3144
this . _lookUpTableQuadratic = [ ] ;
3145
3145
this . _lutQuadraticDetail = this . _pInst . _curveDetail ;
3146
3146
const step = 1 / this . _lutQuadraticDetail ;
3147
- let start = 0 ;
3147
+ let start = step ;
3148
3148
let end = 1 ;
3149
3149
let j = 0 ;
3150
3150
while ( start < 1 ) {
@@ -3288,7 +3288,7 @@ p5.RendererGL.prototype.curveVertex = function(...args) {
3288
3288
this . _lookUpTableBezier = [ ] ;
3289
3289
this . _lutBezierDetail = this . _pInst . _curveDetail ;
3290
3290
const step = 1 / this . _lutBezierDetail ;
3291
- let start = 0 ;
3291
+ let start = step ;
3292
3292
let end = 1 ;
3293
3293
let j = 0 ;
3294
3294
while ( start < 1 ) {
You can’t perform that action at this time.
0 commit comments