/****************************************************************************** * Compilation: javac WireSphere.java * Execution: java WireSphere * * Draws a wireframe sphere of radius one at (0, 0, 0). * * Keywords: Sphere, Wireframe ******************************************************************************/ public class WireSphere { public static void main(String[] args) { StdDraw3D.setScale(-1, 1); StdDraw3D.wireSphere(0, 0, 0, 1); StdDraw3D.finished(); } }