src/org/math/plot/render/AWTDrawer3D.java

00001 package org.math.plot.render;
00002 
00003 import org.math.plot.canvas.*;
00004 
00005 public class AWTDrawer3D extends AWTDrawer {
00006 
00007         public AWTDrawer3D(PlotCanvas _canvas) {
00008                 super(_canvas);
00009                 projection = new Projection3D(this);
00010         }
00011 
00012         public void rotate(int[] t, int[] panelSize) {
00013                 ((Projection3D) projection).rotate(t, panelSize);
00014         }
00015 
00016 }

Generated on Wed Sep 5 21:44:02 2007 for jmathplot by  doxygen 1.5.1