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)
   Rects and Ellipses don't have alpha?
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: Rects and Ellipses don't have alpha?  (Read 359 times)
_scloopy
Guest
Email
Rects and Ellipses don't have alpha?
« on: Oct 7th, 2003, 12:46am »

Check this out. The line draws with alpha but not the rect or ellipse!
 
Code:
size(200, 200);
background(0);
 
stroke(255,255,255,20);
noFill();
ellipseMode(CENTER_DIAMETER);
ellipse(100, 100, 160, 160);
rectMode(CENTER_DIAMETER);
rect(100, 100, 100, 100);
line(20, 20, 180, 180);
 
_scloopy
Guest
Email
Re: Rects and Ellipses don't have alpha?
« Reply #1 on: Oct 7th, 2003, 12:48am »

Oops I forgot to metion this is in p65 on Mac OS X
 
fry


WWW
Re: Rects and Ellipses don't have alpha?
« Reply #2 on: Oct 7th, 2003, 12:58am »

yup, already fixed for 66, available this week.
 
Pages: 1 

« Previous topic | Next topic »