Import Geant4 10.4.0 source tree
This commit is contained in:
@@ -43,26 +43,26 @@ class nodekit : public node {
|
||||
public:
|
||||
virtual void update_sg(std::ostream&) = 0;
|
||||
public:
|
||||
virtual void render(tools::sg::render_action& a_action) {
|
||||
virtual void render(render_action& a_action) {
|
||||
update_if_touched(a_action.out());
|
||||
m_group.render(a_action);
|
||||
}
|
||||
virtual void search(tools::sg::search_action& a_action) {
|
||||
virtual void search(search_action& a_action) {
|
||||
parent::search(a_action);
|
||||
if(a_action.done()) return;
|
||||
update_if_touched(a_action.out());
|
||||
m_group.search(a_action);
|
||||
}
|
||||
virtual void bbox(tools::sg::bbox_action& a_action) {
|
||||
virtual void bbox(bbox_action& a_action) {
|
||||
update_if_touched(a_action.out());
|
||||
m_group.bbox(a_action);
|
||||
}
|
||||
/*
|
||||
virtual void pick(tools::sg::pick_action& a_action) {
|
||||
virtual void pick(pick_action& a_action) {
|
||||
update_if_touched(a_action.out());
|
||||
nodekit_pick(a_action,m_group,this);
|
||||
}
|
||||
virtual bool write(tools::sg::write_action& a_action) {
|
||||
virtual bool write(write_action& a_action) {
|
||||
update_if_touched(a_action.out());
|
||||
//if(!write_fields(a_action)) return false;
|
||||
return m_group.write(a_action);
|
||||
|
||||
Reference in New Issue
Block a user