We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b5fbef commit 74d4979Copy full SHA for 74d4979
src/IECoreMaya/LiveScene.cpp
@@ -206,20 +206,7 @@ void LiveScene::path( Path &p ) const
206
throw Exception( "IECoreMaya::LiveScene::path: Dag path no longer exists!" );
207
}
208
209
- std::string pathStr( m_dagPath.fullPathName().asChar() );
210
- boost::tokenizer<boost::char_separator<char> > t( pathStr, boost::char_separator<char>( "|" ) );
211
-
212
- p.clear();
213
214
- for (
215
- boost::tokenizer<boost::char_separator<char> >::iterator it = t.begin();
216
- it != t.end();
217
- ++it
218
- )
219
- {
220
- p.push_back( Name( *it ) );
221
- }
222
+ dagPathToPath( m_dagPath, p );
223
224
225
Imath::Box3d LiveScene::readBound( double time ) const
0 commit comments