Files
bluflame/meshTools/meshTools/include/tools/Split.h
2026-04-18 22:31:51 +02:00

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);
}