| 577 | */ |
| 578 | void SetEdgePoint(vtkIdType e, vtkIdType i, const double x[3]); |
| 579 | void SetEdgePoint(vtkIdType e, vtkIdType i, double x, double y, double z) |
| 580 | { |
| 581 | double p[3] = { x, y, z }; |
| 582 | this->SetEdgePoint(e, i, p); |
| 583 | } |
| 584 | |
| 585 | /** |
| 586 | * Adds a point to the end of the list of edge points for a certain edge. |
nothing calls this directly
no test coverage detected