Changeset View
Changeset View
Standalone View
Standalone View
source/blender/alembic/intern/abc_archive.h
| Show First 20 Lines • Show All 47 Lines • ▼ Show 20 Lines | |||||
| public: | public: | ||||
| explicit ArchiveReader(const char *filename); | explicit ArchiveReader(const char *filename); | ||||
| bool valid() const; | bool valid() const; | ||||
| /** | /** | ||||
| * Returns true when either Blender is compiled with HDF5 support and | * Returns true when either Blender is compiled with HDF5 support and | ||||
| * the archive was succesfully opened (valid() will also return true), | * the archive was successfully opened (valid() will also return true), | ||||
| * or when Blender was built without HDF5 support but a HDF5 file was | * or when Blender was built without HDF5 support but a HDF5 file was | ||||
| * detected (valid() will return false). | * detected (valid() will return false). | ||||
| */ | */ | ||||
| bool is_hdf5() const; | bool is_hdf5() const; | ||||
| Alembic::Abc::IObject getTop(); | Alembic::Abc::IObject getTop(); | ||||
| }; | }; | ||||
| Show All 11 Lines | |||||