------------------------------------------------------------------------------
| 214 | |
| 215 | //------------------------------------------------------------------------------ |
| 216 | void vtkGraph::Initialize() |
| 217 | { |
| 218 | this->ForceOwnership(); |
| 219 | Superclass::Initialize(); |
| 220 | this->EdgeData->Initialize(); |
| 221 | this->VertexData->Initialize(); |
| 222 | this->Internals->NumberOfEdges = 0; |
| 223 | this->Internals->Adjacency.clear(); |
| 224 | if (this->EdgePoints) |
| 225 | { |
| 226 | this->EdgePoints->Storage.clear(); |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | //------------------------------------------------------------------------------ |
| 231 | void vtkGraph::GetOutEdges(vtkIdType v, vtkOutEdgeIterator* it) |
no test coverage detected