aboutsummaryrefslogtreecommitdiff
path: root/src/o3d/vertex.cpp
blob: 5845e2771c710dd5035460b7064ff673ffe747df (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "o3d/vertex.h"
#include "math/vector.h"
#include "o3d/vertex_data.h"

using namespace engine::o3d;

Vertex::Vertex(engine::math::Vector4 vertex, engine::math::Vector3 normal, VertexData data)
    : vertex{vertex}, normal{normal}, data{data} {
}