Wildmeshing Toolkit
is_ccw.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <wmtk/Tuple.hpp>
3 
4 namespace wmtk::autogen::tri_mesh {
5 bool is_ccw(const Tuple& t);
6 // validates whether the tuple local ids are valid for computing ccw'ness
7 bool tuple_is_valid_for_ccw(const Tuple& t);
8 } // namespace wmtk::autogen::tri_mesh
9 
10 #include "is_ccw.hxx"
bool tuple_is_valid_for_ccw(const Tuple &t)
Definition: is_ccw.hxx:17
bool is_ccw(const Tuple &t)
Definition: is_ccw.hxx:10