Wildmeshing Toolkit
is_ccw.cpp
Go to the documentation of this file.
1 #include "is_ccw.hpp"
2 #include <wmtk/Tuple.hpp>
6 
7 namespace wmtk::autogen {
8 bool is_ccw(PrimitiveType pt, const Tuple& t)
9 {
10  switch (pt) {
13  case PrimitiveType::Edge: return edge_mesh::is_ccw(t);
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
bool is_ccw(const Tuple &t)
Definition: is_ccw.hxx:8
bool tuple_is_valid_for_ccw(const Tuple &t)
Definition: is_ccw.hxx:14
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
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
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