|
Author |
Topic: bezierVertex (Read 238 times) |
|
benelek
|
bezierVertex
« on: Jun 11th, 2003, 2:20pm » |
|
bezierVertex seems to be acting up when used with more than 4 points... for example, the code below uses 5 points evenly spaced along the x-axis and alternating by 80 for each y-value. the bezierVertex points are also drawn, with little rectangles: Code: size(200,200); beginShape(LINE_STRIP); rect(width/10,20,5,5); bezierVertex(width/10,20); rect(2*width/10,100,5,5); bezierVertex(2*width/10,100); rect(3*width/10,20,5,5); bezierVertex(3*width/10,20); rect(4*width/10,100,5,5); bezierVertex(4*width/10,100); rect(5*width/10,20,5,5); bezierVertex(5*width/10,20); endShape(); |
|
|
|
|
|
arielm
|
Re: bezierVertex
« Reply #1 on: Jun 11th, 2003, 6:00pm » |
|
this bug is cataloged already but your example has been entered into the data-base to serve as a test-case... thanks!
|
Ariel Malka | www.chronotext.org
|
|
|
fry
|
Re: bezierVertex
« Reply #2 on: Sep 18th, 2003, 4:34am » |
|
finally fixed in a recent release.
|
|
|
|
|