Return true iff the mesh is consistently oriented. That is all non-bonary edges must represent locally 2-manifold or intersection of 2-manifold surfaces.
(self)
| 175 | return self._extra_info.is_closed() |
| 176 | |
| 177 | def is_oriented(self): |
| 178 | """ Return true iff the mesh is consistently oriented. |
| 179 | |
| 180 | That is all non-bonary edges must represent locally 2-manifold or |
| 181 | intersection of 2-manifold surfaces. |
| 182 | """ |
| 183 | return self._extra_info.is_oriented() |
| 184 | |
| 185 | @property |
| 186 | def vertices(self): |
no outgoing calls