| 158 | template < typename PointType, index_t dimension > |
| 159 | template < index_t T > |
| 160 | std::enable_if_t< T == 3, std::optional< local_index_t > > |
| 161 | GenericTriangle< PointType, dimension >::pivot() const |
| 162 | { |
| 163 | if( const auto result = pivot_and_normal() ) |
| 164 | { |
| 165 | return result->first; |
| 166 | } |
| 167 | return std::nullopt; |
| 168 | } |
| 169 | |
| 170 | template < typename PointType, index_t dimension > |
| 171 | template < index_t T > |
no outgoing calls