ZeroZero Game Engine  v0.0
A 3D game engine using Vulkan & Jolt
Public Member Functions | Static Public Member Functions | List of all members
Mesh Class Reference

Detailed Description

A mesh composed by multiple Surface and an indexes collection of Vertex

Inheritance diagram for Mesh:
Resource Object

Public Member Functions

const shared_ptr< Material > & getSurfaceMaterial (const uint32_t surfaceIndex) const
 
void setSurfaceMaterial (uint32_t surfaceIndex, const shared_ptr< Material > &material)
 
vector< shared_ptr< Surface > > & getSurfaces ()
 
vector< Vertex > & getVertices ()
 
vector< uint32_t > & getIndices ()
 
const vector< Vertex > & getVertices () const
 
const vector< uint32_t > & getIndices () const
 
const AABBgetAABB () const
 
- Public Member Functions inherited from Resource
auto getId () const
 
const auto & getName () const
 
string toString () const override
 
virtual shared_ptr< Resource > duplicate () const
 
- Public Member Functions inherited from Object
void connect (const Signal::signal &name, const Signal::Handler &handler)
 
void connect (const Signal::signal &name, const function< void ()> &handler)
 
void emit (const Signal::signal &name, void *params=nullptr)
 

Static Public Member Functions

static shared_ptr< Mesh > create (const string &meshName="Mesh")
 
static shared_ptr< Mesh > create (const vector< Vertex > &vertices, const vector< uint32_t > &indices, const vector< shared_ptr< Surface >> &surfaces, const string &meshName="Mesh")
 

Member Function Documentation

static shared_ptr<Mesh> create ( const string &  meshName = "Mesh")
static

Creates an empty Mesh

Parameters
meshNamenode name
static shared_ptr<Mesh> create ( const vector< Vertex > &  vertices,
const vector< uint32_t > &  indices,
const vector< shared_ptr< Surface >> &  surfaces,
const string &  meshName = "Mesh" 
)
static

Creates a Mesh from vertices

Parameters
verticesVertices
indicesIndexes of vertices
surfacesSurfaces
meshNameNode name
const AABB& getAABB ( ) const
nodiscardinline

Returns the local space axis aligned bounding box

vector<uint32_t>& getIndices ( )
nodiscardinline

Return all the vertices indexes

const vector<uint32_t>& getIndices ( ) const
nodiscardinline

Return all the vertices indexes

const shared_ptr<Material>& getSurfaceMaterial ( const uint32_t  surfaceIndex) const
nodiscardinline

Returns the material for a given surface

Parameters
surfaceIndexZero based index of the surface
vector<shared_ptr<Surface> >& getSurfaces ( )
nodiscardinline

Returns all the Surfaces

vector<Vertex>& getVertices ( )
nodiscardinline

Returns all the vertices

const vector<Vertex>& getVertices ( ) const
nodiscardinline

Returns all the vertices

void setSurfaceMaterial ( uint32_t  surfaceIndex,
const shared_ptr< Material > &  material 
)

Changes the material of a given surface

Parameters
surfaceIndexZero based index of the Surface
materialNew material for the Surface