13 lines
298 B
C++
13 lines
298 B
C++
#pragma once
|
|
#include "../../include/core/core.h"
|
|
#include "typedefs.h"
|
|
|
|
namespace mt
|
|
{
|
|
// Splits the provided faces by the given plane.
|
|
FaceList Split(const FaceList& faces, const Plane& plane);
|
|
|
|
// Merges two triangles and returns the new quad face.
|
|
Face* MergeTriangles(Face* a, Face* b);
|
|
}
|