diff --git a/java/examples/OpenGL/Performance/Esfera/Esfera.pde b/java/examples/OpenGL/Performance/Esfera/Esfera.pde index 329af409b..e6f12c130 100755 --- a/java/examples/OpenGL/Performance/Esfera/Esfera.pde +++ b/java/examples/OpenGL/Performance/Esfera/Esfera.pde @@ -69,8 +69,6 @@ class pelo float x = radio * cos(theta) * cos(phi); float y = radio * cos(theta) * sin(phi); float z = radio * sin(theta); - float msx= screenX(x,y,z); - float msy= screenY(x,y,z); float xo = radio * cos(thetaff) * cos(phff); float yo = radio * cos(thetaff) * sin(phff); @@ -88,4 +86,4 @@ class pelo vertex(xb,yb,zb); endShape(); } -} +}