summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/glrender.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/glrender.h')
-rw-r--r--Build/source/utils/asymptote/glrender.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/Build/source/utils/asymptote/glrender.h b/Build/source/utils/asymptote/glrender.h
index 7f4529c50b5..48011260e80 100644
--- a/Build/source/utils/asymptote/glrender.h
+++ b/Build/source/utils/asymptote/glrender.h
@@ -115,9 +115,16 @@ extern bool outlinemode;
extern bool wireframeMode;
extern bool orthographic;
+
+// 2D bounds
extern double xmin,xmax;
extern double ymin,ymax;
-extern double zmin,zmax;
+
+// 3D bounds
+extern double Xmin,Xmax;
+extern double Ymin,Ymax;
+extern double Zmin,Zmax;
+
extern int fullWidth,fullHeight;
extern double Zoom0;
extern double Angle;
@@ -166,6 +173,7 @@ extern const double *dprojView;
extern const double *dView;
extern double BBT[9];
+extern double T[16];
extern bool format3dWait;