| 46 | IE_CORE_DEFINERUNTIMETYPED( Group ); |
| 47 | |
| 48 | Group::Group() |
| 49 | : m_state( new State( false ) ), m_transform( M44f() ) |
| 50 | { |
| 51 | } |
| 52 | |
| 53 | Group::Group( const Group &other ) |
| 54 | : m_state( new State( *(other.m_state) ) ), m_transform( other.m_transform ), m_children( other.m_children ) |
no outgoing calls