Normand Briere
2019-05-05 631719825b865aaf9fa1cb124d9fc5bd9dd78bd4
iCameraPane.java
....@@ -24,7 +24,7 @@
2424
2525 boolean IsFrozen();
2626
27
- javax.media.opengl.GL GetGL();
27
+ javax.media.opengl.GL GetGL0();
2828
2929 // Currently in Globals
3030 int DrawMode();
....@@ -60,6 +60,22 @@
6060
6161 void DrawFace(Object3D obj, Vertex pv, Vertex qv, Vertex rv, Face face);
6262
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
+
6379 void DrawParticles(TriMesh geo, Object3D shape, boolean selected, boolean rotate);
6480
6581 void PrepOcclusion(BoundaryRep br, double[][] transform);