Wildmeshing Toolkit
Loading...
Searching...
No Matches
is_ccw.cpp
Go to the documentation of this file.
1#include "is_ccw.hpp"
2#include <wmtk/Tuple.hpp>
6
7namespace wmtk::autogen {
8bool is_ccw(PrimitiveType pt, const Tuple& t)
9{
10 switch (pt) {
15 default: assert(false); // "notimplemented"
16 }
17 return false;
18}
19
20// validates whether the tuple local ids are valid for computing ccw'ness
22{
23 switch (pt) {
28 default: assert(false); // "notimplemented"
29 }
30 return false;
31}
32} // namespace wmtk::autogen
The Tuple is the basic navigation tool in our mesh data structure.
Definition Tuple.hpp:19
bool is_ccw(const Tuple &t)
Definition is_ccw.hxx:7
bool tuple_is_valid_for_ccw(const Tuple &t)
Definition is_ccw.hxx:12
bool tuple_is_valid_for_ccw(const Tuple &t)
Definition is_ccw.hxx:15
bool is_ccw(const Tuple &t)
Definition is_ccw.hxx:9
bool tuple_is_valid_for_ccw(const Tuple &t)
Definition is_ccw.hxx:15
bool is_ccw(const Tuple &t)
Definition is_ccw.hxx:9
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