Ignore:
Timestamp:
02/05/07 13:29:55 (18 years ago)
Author:
gumbau
Message:
 
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  
    3434        bool            mWire; 
    3535        bool            mSolid; 
     36        bool            mLighting; 
    3637        bool            mCW; 
    3738        bool            mCCW; 
     
    9596        void    activeSolid(){mSolid    =       true;}; 
    9697        void    deactiveSolid(){mSolid  =       false;}; 
     98 
     99        //      Lighting. 
     100        void    activeLighting(){mLighting      =       true;}; 
     101        void    deactiveLighting(){mLighting    =       false;}; 
    97102 
    98103        //      Clockwise mode. 
  • GTP/trunk/Lib/Geom/shared/GeoTool/include/GeoMeshViewUI.h

    r1554 r2090  
    8888using   namespace       std; 
    8989 
     90//----------------------------------------------------------------------------- 
     91//----------------------------------------------------------------------------- 
    9092class GeoToolIndexData : public Geometry::IndexData 
    9193{ 
     
    131133}; 
    132134 
     135//----------------------------------------------------------------------------- 
     136//      Class User Interface of GeoTool. 
     137//----------------------------------------------------------------------------- 
    133138class GeoMeshViewUI 
    134139{ 
     
    198203        inline void cb_menuRenderSolid_i(fltk::Item*, void*); 
    199204        static void cb_menuRenderSolid(fltk::Item*, void*); 
     205        inline void cb_menuRenderLighting_i(fltk::Item*, void*); 
     206        static void cb_menuRenderLighting(fltk::Item*, void*); 
    200207        inline void cb_menuRenderCW_i(fltk::Item*, void*); 
    201208        static void cb_menuRenderCW(fltk::Item*, void*); 
     
    361368        fltk::Item                                      *menuRenderWire; 
    362369        fltk::Item                                      *menuRenderSolid; 
     370        fltk::Item                                      *menuRenderLighting; 
    363371        fltk::Item                                      *menuRenderCW; 
    364372        fltk::Item                                      *menuRenderCCW; 
Note: See TracChangeset for help on using the changeset viewer.