| 164 | } |
| 165 | |
| 166 | std::shared_ptr<const Object> Object::find( const std::string_view & name ) const |
| 167 | { |
| 168 | for ( const auto & child : children_ ) |
| 169 | if ( child->name() == name ) |
| 170 | return child; |
| 171 | return {}; // not found among recognized children |
| 172 | } |
| 173 | |
| 174 | void Object::setXf( const AffineXf3f& xf, ViewportId id ) |
| 175 | { |
no test coverage detected