------------------------------------------------------------------------------
| 1104 | |
| 1105 | //------------------------------------------------------------------------------ |
| 1106 | void vtkGraph::DeepCopyEdgePoints(vtkGraph* g) |
| 1107 | { |
| 1108 | if (g->EdgePoints) |
| 1109 | { |
| 1110 | if (!this->EdgePoints) |
| 1111 | { |
| 1112 | this->EdgePoints = vtkGraphEdgePoints::New(); |
| 1113 | } |
| 1114 | this->EdgePoints->Storage = g->EdgePoints->Storage; |
| 1115 | } |
| 1116 | else |
| 1117 | { |
| 1118 | this->SetEdgePoints(nullptr); |
| 1119 | } |
| 1120 | } |
| 1121 | |
| 1122 | //------------------------------------------------------------------------------ |
| 1123 | void vtkGraph::GetInducedEdges(vtkIdTypeArray* verts, vtkIdTypeArray* edges) |
no test coverage detected