| 161 | } |
| 162 | |
| 163 | bool Mesh::isOutsideByProjNorm( const Vector3f & pt, const MeshProjectionResult & proj, const FaceBitSet * region ) const |
| 164 | { |
| 165 | return dot( proj.proj.point - pt, pseudonormal( proj.mtp, region ) ) <= 0; |
| 166 | } |
| 167 | |
| 168 | Plane3f Mesh::getPlane3f( FaceId f ) const |
| 169 | { |
no test coverage detected