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
   Software Bugs
(Moderator: fry)
   strokeWeight & curveVertex
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: strokeWeight & curveVertex  (Read 435 times)
seizethedave

daveg147 Email
strokeWeight & curveVertex
« on: Mar 27th, 2004, 1:26am »

My quick search didn't detect this issue, but:
 
Code:

  strokeWeight(10);
 
  beginShape(LINE_STRIP);
  curveVertex(0, 0);
  int count = (int) random(5, 15);
  for (int i = 0; i <= count; i++)
  {
    curveVertex((float) i / count * width, random(-100, 100));
  }
  curveVertex(width, 0);
  endShape();

 
produces weird cracks along the curves:
 

 
Is this known?
 
fry


WWW
Re: strokeWeight & curveVertex
« Reply #1 on: Mar 28th, 2004, 8:23pm »

yeah, this is a bad one that was supposed to be fixed last august (!) we had a little funding from ivrea to hire someone to fix it but they gave us an incomplete solution, took part of the money, and bailed on us without completing it.  
 
it's on the list to be fixed.. sorry about that..
 
Pages: 1 

« Previous topic | Next topic »