------------------------------------------------------------------------------------------------ Compute the normal of the last polygon in the given mesh
| 219 | // ------------------------------------------------------------------------------------------------ |
| 220 | // Compute the normal of the last polygon in the given mesh |
| 221 | IfcVector3 TempMesh::ComputeLastPolygonNormal(bool normalize) const { |
| 222 | return ComputePolygonNormal(&mVerts[mVerts.size() - mVertcnt.back()], mVertcnt.back(), normalize); |
| 223 | } |
| 224 | |
| 225 | struct CompareVector { |
| 226 | bool operator () (const IfcVector3& a, const IfcVector3& b) const { |
no test coverage detected