AlpacaLibrary/Include/Core/Classes/Model.hpp

41 lines
1.2 KiB
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef MODEL_HPP_INCLUDED
#define MODEL_HPP_INCLUDED
#include "Renderable.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include <cstdint>
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class Model : public Renderable
{
public:
Model(const void* Obj);
2018-12-27 18:17:09 +00:00
Model() = default;
Model(Model&& Obj) = default;
Model(const Model& Obj) = default;
Model& operator=(Model&& Obj) = default;
Model& operator=(const Model& Obj) = default;
2018-03-18 14:38:29 +00:00
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::vector<std::vector<std::int32_t>> GetFrameMapIndices() const;
std::vector<std::int32_t> GetIndicesA() const;
std::vector<std::int32_t> GetIndicesB() const;
std::vector<std::int32_t> GetIndicesC() const;
std::int32_t GetIndicesLength() const;
std::int32_t GetVerticesLength() const;
std::vector<std::int32_t> GetVerticesX() const;
std::vector<std::int32_t> GetVerticesY() const;
std::vector<std::int32_t> GetVerticesZ() const;
2017-12-25 23:49:48 +00:00
2023-08-26 22:00:25 +00:00
std::vector<std::vector<std::int32_t>> GetInt2DArray1() const;
std::vector<std::vector<std::int32_t>> GetInt2DArray2() const;
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
#endif // MODEL_HPP_INCLUDED