Wildmeshing Toolkit
Loading...
Searching...
No Matches
orient.hpp
1#pragma once
2
3#include <wmtk/Types.hpp>
4
5namespace wmtk::utils {
6
7bool orient3d(const Vector3r& p0, const Vector3r& p1, const Vector3r& p2, const Vector3r& p3);
8
9bool orient3d(const Vector3d& p0, const Vector3d& p1, const Vector3d& p2, const Vector3d& p3);
10
11bool orient2d(const Vector2r& p0, const Vector2r& p1, const Vector2r& p2);
12
13bool orient2d(const Vector2d& p0, const Vector2d& p1, const Vector2d& p2);
14
15} // namespace wmtk::utils