xxxxxxxxxx
PuntosLinea A = new PuntosLinea(5,1);
PuntosLinea B = new PuntosLinea(6,1.4);
PuntosLinea C = new PuntosLinea(7,1.8);
PuntosLinea D = new PuntosLinea(8,2.2);
PuntosLinea E = new PuntosLinea(9,2.6);
PuntosLinea F = new PuntosLinea(10,3);
PuntosLinea G = new PuntosLinea(11,3.4);
PuntosLinea H = new PuntosLinea(12,3.8);
PuntosLinea I = new PuntosLinea(13,4.2);
PuntosLinea J = new PuntosLinea(14,4.6);
void setup() {
size(800,800,P3D);
background(0);
stroke(255);
strokeWeight(1);
perspective(PI/5, 1,0.1,10000);
camera(width/2,height,width/4,width/2,height/2,width/8,0,1,0);
hint(DISABLE_DEPTH_TEST);
}
void draw() {
translate(width/2, height/2, 0);
noStroke();
fill(0,5);
sphere(200);
A.draw();
B.draw();
C.draw();
D.draw();
E.draw();
F.draw();
G.draw();
H.draw();
I.draw();
J.draw();
}