* Computes the angle defect at a vertex. * * Input: The vertex whose angle defect is to be computed. * Returns: The angle defect of the given vertex. */
| 200 | * Returns: The angle defect of the given vertex. |
| 201 | */ |
| 202 | double VertexPositionGeometry::angleDefect(Vertex v) const { |
| 203 | |
| 204 | // TODO |
| 205 | return 0; // placeholder |
| 206 | } |
| 207 | |
| 208 | /* |
| 209 | * Computes the total angle defect of the mesh. |
no outgoing calls