.. | .. |
---|
24 | 24 | |
---|
25 | 25 | boolean IsFrozen(); |
---|
26 | 26 | |
---|
27 | | - javax.media.opengl.GL GetGL(); |
---|
| 27 | + javax.media.opengl.GL GetGL0(); |
---|
28 | 28 | |
---|
29 | 29 | // Currently in Globals |
---|
30 | 30 | int DrawMode(); |
---|
.. | .. |
---|
55 | 55 | |
---|
56 | 56 | void DrawString(Object3D obj); |
---|
57 | 57 | |
---|
58 | | - void BindTextures(cTexture tex, int resolution); |
---|
| 58 | + void BindTextures(cTexture tex, int resolution) throws Exception; |
---|
59 | 59 | void ReleaseTextures(cTexture tex); |
---|
60 | 60 | |
---|
61 | 61 | void DrawFace(Object3D obj, Vertex pv, Vertex qv, Vertex rv, Face face); |
---|
62 | 62 | |
---|
| 63 | + void DrawBox(cVector min, cVector max); |
---|
| 64 | + |
---|
| 65 | + void DrawGeometry(BoundaryRep bRep, boolean flipV, boolean selectmode); |
---|
| 66 | + |
---|
| 67 | + void DrawDynamicMesh(cMesh c); |
---|
| 68 | + |
---|
| 69 | + void StartTriangles(); |
---|
| 70 | + void EndTriangles(); |
---|
| 71 | + |
---|
| 72 | + int GenList(); |
---|
| 73 | + void NewList(int id); |
---|
| 74 | + void CallList(int id); |
---|
| 75 | + void EndList(); |
---|
| 76 | + |
---|
| 77 | + void NextIndex(); |
---|
| 78 | + |
---|
63 | 79 | void DrawParticles(TriMesh geo, Object3D shape, boolean selected, boolean rotate); |
---|
64 | 80 | |
---|
65 | 81 | void PrepOcclusion(BoundaryRep br, double[][] transform); |
---|
66 | 82 | |
---|
67 | 83 | void setCursor(java.awt.Cursor cursor); |
---|
68 | 84 | |
---|
69 | | - com.sun.opengl.util.texture.TextureData GetTextureData(String tex, boolean bump, int resolution); |
---|
| 85 | + com.sun.opengl.util.texture.TextureData GetTextureData(String tex, boolean bump, int resolution) throws Exception; |
---|
70 | 86 | |
---|
71 | 87 | void repaint(); |
---|
72 | 88 | |
---|