I plan to buy Mac minis.
Are you using a Webcam on Mac mini?
Can I use Processing Video library on Mac mini by that Webcam?
If you are using that way, please tell me the brand and model name of the the Webcam.
When the small sphere() was magnified by the scale(), the sphere has a stick.
Processing 1.5.1 and 1.5(MacOS X 10.6)
Is this a bug?
Any avoidance method?
# Processing 1.2.1 had no problem.
Sample code.
float Mx=PI,My=0;
void setup() {
size(200, 200, P3D);
noStroke();
}
void draw() {
background(255);
translate(width/2, height/2, 0);
lights();
rotateX(My);
rotateY(Mx);
scale(100);
pushMatrix();
translate(0,0,0);
sphere(0.5);
popMatrix();
}
void mouseDragged(){
Mx+=(mouseX-pmouseX)/200.;
My+=-(mouseY-pmouseY)/200.;
}
I found,
replace
scale(100) and sphere(0.5)
with
scale(1) and sphere(0.5*100)
is one of the solution.
Why, PGraphics images can't copy(save) to PImage array?
All the element of array is the last image.
I want to make(ascii character) images as an array.
(The aim of isn't only display.)