/* # ______ ____ ___ # | \/ ____| |___| # | | | \ | | #----------------------------------------------------------------------- # Copyright 2022, tyra - https://github.com/h4570/tyra # Licenced under Apache License 2.0 # Sandro Sobczyński */ #pragma once #include "./mesh_material.hpp" #include "loaders/3d/builder/mesh_builder_data.hpp" #include "loaders/3d/builder2/mesh_builder2_data.hpp" #include "renderer/3d/bbox/bbox.hpp" namespace Tyra { class MeshFrame { public: explicit MeshFrame(const MeshBuilderData& data, const u32& index); explicit MeshFrame(const MeshBuilder2Data& data, const u32& index); explicit MeshFrame(const MeshFrame& frame); ~MeshFrame(); const u32& getId() const { return id; } const u8& isMother() const { return _isMother; } const BBox& getBBox() const { return *bbox; } void print() const; void print(const char* name) const; void print(const std::string& name) const { print(name.c_str()); } std::string getPrint(const char* name = nullptr) const; private: u8 _isMother; BBox* bbox; u32 id; }; } // namespace Tyra