Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/externals/g4tools/include/tools/sg/nodekit

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

Diff markup

Differences between /externals/g4tools/include/tools/sg/nodekit (Version 11.3.0) and /externals/g4tools/include/tools/sg/nodekit (Version 9.6.p2)


  1 // Copyright (C) 2010, Guy Barrand. All rights    
  2 // See the file tools.license for terms.          
  3                                                   
  4 #ifndef tools_sg_nodekit                          
  5 #define tools_sg_nodekit                          
  6                                                   
  7 #include "pick_action"                            
  8 #include "group"                                  
  9                                                   
 10 namespace tools {                                 
 11 namespace sg {                                    
 12                                                   
 13 inline void nodekit_pick(pick_action& a_action    
 14   if(a_action.stop_at_first()){                   
 15     a_sg.pick(a_action);                          
 16     if(a_action.done()) {                         
 17       a_action.set_node(a_node);                  
 18       a_action.save_state(a_action.state());      
 19     }                                             
 20   } else {                                        
 21     // have a local pick_action to override no    
 22     pick_action action(a_action);                 
 23     a_sg.pick(action);                            
 24     typedef pick_action::pick_t pick_t;           
 25     const std::vector<pick_t>& pks = action.pi    
 26     std::vector<pick_t>::const_iterator it;       
 27     for(it=pks.begin();it!=pks.end();++it) {      
 28       a_action.add_pick(*a_node,(*it).zs(),(*i    
 29     }                                             
 30   }                                               
 31 }                                                 
 32                                                   
 33 }}                                                
 34                                                   
 35 #include "render_action"                          
 36 #include "bbox_action"                            
 37                                                   
 38 namespace tools {                                 
 39 namespace sg {                                    
 40                                                   
 41 class nodekit : public node {                     
 42   TOOLS_HEADER(nodekit,tools::sg::nodekit,node    
 43 public:                                           
 44   virtual void update_sg(std::ostream&) = 0;      
 45 public:                                           
 46   virtual void render(render_action& a_action)    
 47     update_if_touched(a_action.out());            
 48     m_group.render(a_action);                     
 49   }                                               
 50   virtual void search(search_action& a_action)    
 51     update_if_touched(a_action.out());            
 52     parent::search(a_action);                     
 53     if(a_action.done()) return;                   
 54     m_group.search(a_action);                     
 55   }                                               
 56   virtual void bbox(bbox_action& a_action) {      
 57     update_if_touched(a_action.out());            
 58     m_group.bbox(a_action);                       
 59   }                                               
 60 /*                                                
 61   virtual void pick(pick_action& a_action) {      
 62     update_if_touched(a_action.out());            
 63     nodekit_pick(a_action,m_group,this);          
 64   }                                               
 65   virtual bool write(write_action& a_action) {    
 66     update_if_touched(a_action.out());            
 67     //if(!write_fields(a_action)) return false    
 68     return m_group.write(a_action);               
 69   }                                               
 70 */                                                
 71 public:                                           
 72   nodekit()                                       
 73   :parent()                                       
 74   {}                                              
 75   virtual ~nodekit(){}                            
 76 public:                                           
 77   nodekit(const nodekit& a_from)                  
 78   :parent(a_from)                                 
 79   {}                                              
 80   nodekit& operator=(const nodekit& a_from){      
 81     parent::operator=(a_from);                    
 82     return *this;                                 
 83   }                                               
 84 protected:                                        
 85   void update_if_touched(std::ostream& a_out)     
 86     if(touched()) {                               
 87       update_sg(a_out);                           
 88       reset_touched();                            
 89     }                                             
 90   }                                               
 91 protected:                                        
 92   group m_group;                                  
 93 };                                                
 94                                                   
 95 }}                                                
 96                                                   
 97 #endif