Wildmeshing Toolkit
is_ccw.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <wmtk/Primitive.hpp>
3 
4 namespace wmtk {
5 class Tuple;
6 }
7 
8 // NOTE: this header primarily exists to simplify unit testing, not really for use
9 namespace wmtk::autogen {
10 bool is_ccw(PrimitiveType ptype, const Tuple& t);
11 
12 // validates whether the tuple local ids are valid for computing ccw'ness
13 bool tuple_is_valid_for_ccw(PrimitiveType ptype, const Tuple& t);
14 } // namespace wmtk::autogen
bool is_ccw(PrimitiveType pt, const Tuple &t)
Definition: is_ccw.cpp:8
bool tuple_is_valid_for_ccw(PrimitiveType pt, const Tuple &t)
Definition: is_ccw.cpp:21
Definition: Accessor.hpp:6