Update of /cvsroot/simspark/simspark/contrib/rsgedit
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv31205
Modified Files:
constants.cpp constants.h
Log Message:
- added GLRENDER_MIN_AXIS_WIDTH
Index: constants.h
===================================================================
RCS file: /cvsroot/simspark/simspark/contrib/rsgedit/constants.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** constants.h 15 Apr 2007 11:15:06 -0000 1.4
--- constants.h 15 Apr 2007 12:18:20 -0000 1.5
***************
*** 69,71 ****
--- 69,74 ----
extern const wxString MAINFRAME_FPS_CONTROLLER;
+ // minimal axis width uses to render selected BaseNodes
+ extern const float GLRENDER_MIN_AXIS_WIDTH;
+
#endif // RSGEDIT_CONSTANTS_H
Index: constants.cpp
===================================================================
RCS file: /cvsroot/simspark/simspark/contrib/rsgedit/constants.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** constants.cpp 31 Mar 2007 13:25:13 -0000 1.3
--- constants.cpp 15 Apr 2007 12:18:20 -0000 1.4
***************
*** 37,38 ****
--- 37,43 ----
// the default path to the fps controller
const wxString MAINFRAME_FPS_CONTROLLER = "/usr/scene/camera/physics/controller";
+
+ // minimal axis width uses to render selected BaseNodes
+ const float GLRENDER_MIN_AXIS_WIDTH = 2.0;
+
+
|