Changeset 2090 for GTP/trunk/Lib/Geom/shared/GeoTool/include
- Timestamp:
- 02/05/07 13:29:55 (18 years ago)
- Location:
- GTP/trunk/Lib/Geom/shared/GeoTool/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Geom/shared/GeoTool/include/GeoMeshView.h
r1549 r2090 34 34 bool mWire; 35 35 bool mSolid; 36 bool mLighting; 36 37 bool mCW; 37 38 bool mCCW; … … 95 96 void activeSolid(){mSolid = true;}; 96 97 void deactiveSolid(){mSolid = false;}; 98 99 // Lighting. 100 void activeLighting(){mLighting = true;}; 101 void deactiveLighting(){mLighting = false;}; 97 102 98 103 // Clockwise mode. -
GTP/trunk/Lib/Geom/shared/GeoTool/include/GeoMeshViewUI.h
r1554 r2090 88 88 using namespace std; 89 89 90 //----------------------------------------------------------------------------- 91 //----------------------------------------------------------------------------- 90 92 class GeoToolIndexData : public Geometry::IndexData 91 93 { … … 131 133 }; 132 134 135 //----------------------------------------------------------------------------- 136 // Class User Interface of GeoTool. 137 //----------------------------------------------------------------------------- 133 138 class GeoMeshViewUI 134 139 { … … 198 203 inline void cb_menuRenderSolid_i(fltk::Item*, void*); 199 204 static void cb_menuRenderSolid(fltk::Item*, void*); 205 inline void cb_menuRenderLighting_i(fltk::Item*, void*); 206 static void cb_menuRenderLighting(fltk::Item*, void*); 200 207 inline void cb_menuRenderCW_i(fltk::Item*, void*); 201 208 static void cb_menuRenderCW(fltk::Item*, void*); … … 361 368 fltk::Item *menuRenderWire; 362 369 fltk::Item *menuRenderSolid; 370 fltk::Item *menuRenderLighting; 363 371 fltk::Item *menuRenderCW; 364 372 fltk::Item *menuRenderCCW;
Note: See TracChangeset
for help on using the changeset viewer.