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