FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Bugs
   Bug Fixes, Implemented Suggestions
(Moderator: fry)
   bezierVertex
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: bezierVertex  (Read 238 times)
benelek

35160983516098 WWW Email
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

WWW
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


WWW
Re: bezierVertex
« Reply #2 on: Sep 18th, 2003, 4:34am »

finally fixed in a recent release.
 
Pages: 1 

« Previous topic | Next topic »