| 238 | } |
| 239 | |
| 240 | const IntVectorData * NParticleReader::frameTimes() |
| 241 | { |
| 242 | if ( !open() ) |
| 243 | { |
| 244 | msg( Msg::Error, "NParticleReader::attributeNames()", boost::format( "Failed to open '%s'." ) % m_iffFileName ); |
| 245 | return nullptr; |
| 246 | } |
| 247 | |
| 248 | return m_frames.get(); |
| 249 | } |
| 250 | |
| 251 | template<typename T, typename F> |
| 252 | typename T::Ptr NParticleReader::filterAttr( const F *attr, float percentage ) |
no test coverage detected