MCPcopy Create free account
hub / github.com/Kitware/VTK / SetEdgePoint

Function SetEdgePoint

Common/DataModel/vtkGraph.h:579–583  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

SetEdgePointMethod · 0.80

Tested by

no test coverage detected