summary refs log tree commit diff
path: root/src/Mesh.cpp
blob: b8c3315280e9770a42b3a7141c6be8f72bd68100 (plain)
1
2
3
4
5
6
7
8
9
#include "Mesh.hpp"

float* MC::Mesh::flat() {
    return (float*)m_positions.data();
}

std::size_t MC::Mesh::size() {
    return m_positions.size();
}