| 1234567891011121314151617181920212223242526272829 |
- // Copyright (C) 2009-2015, Panagiotis Christopoulos Charitos.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #ifndef ANKI_RESOURCE_PATH_H
- #define ANKI_RESOURCE_PATH_H
- #include "anki/Math.h"
- namespace anki {
- /// Path @ref Resource resource
- class Path
- {
- public:
- Vector<Vec3> positions; ///< AKA translations
- Vector<Quat> rotations;
- Vector<F32> scales;
- F32 step;
- Path() {}
- ~Path() {}
- bool load(const char* filename);
- };
- } // end namespace anki
- #endif
|