| 813 | } |
| 814 | |
| 815 | Vector3d FSEdge::edgeVector() const { |
| 816 | Point3d pt1(m_vertices[0].x(), m_vertices[0].y(), 0); |
| 817 | Point3d pt2(m_vertices[1].x(), m_vertices[1].y(), 0); |
| 818 | return (pt2 - pt1); |
| 819 | } |
| 820 | |
| 821 | Point3d FSEdge::vertex(double alpha) const { |
| 822 | double x = (1.0 - alpha) * m_vertices[0].x() + alpha * m_vertices[1].x(); |
no test coverage detected