| 587 | */ |
| 588 | void AddEdgePoint(vtkIdType e, const double x[3]); |
| 589 | void AddEdgePoint(vtkIdType e, double x, double y, double z) |
| 590 | { |
| 591 | double p[3] = { x, y, z }; |
| 592 | this->AddEdgePoint(e, p); |
| 593 | } |
| 594 | |
| 595 | ///@{ |
| 596 | /** |
nothing calls this directly
no test coverage detected