1 package org.textensor.vis;
2
3
4 import javax.swing.JPanel;
5
6 public interface Visualizer {
7
8
9 public final static int LOW = 0;
10 public final static int MEDIUM = 1;
11 public final static int HIGH = 2;
12
13 public JPanel getPanel();
14
15 public void setScaleFactor(double f);
16
17 public void buildViewable(Object obj);
18
19 public void refreshDecoration(Object obj);
20
21 public void deltaLights(double d);
22
23 public void setLightsPercent(int p);
24
25 public void setAA(boolean b);
26
27 public void setResolution(int res);
28
29 public void setFourMatrix(double[] fourMatrixOrientation);
30
31 public double[] getFourMatrix();
32
33
34
35 }