Home
last modified time | relevance | path

Searched refs:lineElems (Results 1 – 6 of 6) sorted by relevance

/dports/math/vtk6/VTK-6.2.0/IO/Geometry/
H A DvtkOBJReader.cxx141 vtkCellArray *lineElems = vtkCellArray::New(); in RequestData() local
294 lineElems->InsertNextCell(0); // we don't yet know how many points are to come in RequestData()
311 lineElems->InsertCellPoint(numPoints+iVert); in RequestData()
315 lineElems->InsertCellPoint(iVert-1); in RequestData()
323 lineElems->InsertCellPoint(numPoints+iVert); in RequestData()
327 lineElems->InsertCellPoint(iVert-1); in RequestData()
369 lineElems->UpdateCellCount(nVerts); in RequestData()
534 if (lineElems->GetNumberOfCells()) in RequestData()
536 output->SetLines(lineElems); in RequestData()
656 lineElems->Delete(); in RequestData()
/dports/math/vtk8/VTK-8.2.0/IO/Import/
H A DvtkOBJImporter.cxx170 lineElems = vtkSmartPointer<vtkCellArray>::New(); in vtkOBJImportedPolyDataWithMaterial()
197 vtkSmartPointer<vtkCellArray> lineElems ; member
424 vtkCellArray* lineElems = poly_list.back()->lineElems; in RequestData() local
599 lineElems->InsertNextCell(0); // we don't yet know how many points are to come in RequestData()
617 lineElems->InsertCellPoint(iVert-1); in RequestData()
622 lineElems->InsertCellPoint(iVert-1); in RequestData()
666 lineElems->UpdateCellCount(nVerts); in RequestData()
842 lineElems = active->lineElems; in RequestData()
878 lineElems = active->lineElems; in RequestData()
896 if (lineElems->GetNumberOfCells()) in RequestData()
[all …]
/dports/math/vtk9/VTK-9.1.0/IO/Import/
H A DvtkOBJImporter.cxx177 lineElems = vtkSmartPointer<vtkCellArray>::New(); in vtkOBJImportedPolyDataWithMaterial()
200 vtkSmartPointer<vtkCellArray> lineElems; member
437 vtkCellArray* lineElems = poly_list.back()->lineElems; in RequestData() local
624 lineElems->InsertNextCell(0); // we don't yet know how many points are to come in RequestData()
642 lineElems->InsertCellPoint(iVert - 1); in RequestData()
647 lineElems->InsertCellPoint(iVert - 1); in RequestData()
688 lineElems->UpdateCellCount(nVerts); in RequestData()
894 lineElems = active->lineElems; in RequestData()
929 lineElems = active->lineElems; in RequestData()
952 if (lineElems->GetNumberOfCells()) in RequestData()
[all …]
/dports/math/vtk8/VTK-8.2.0/IO/Geometry/
H A DvtkOBJReader.cxx146 vtkCellArray *lineElems = vtkCellArray::New(); in RequestData() local
452 lineElems->InsertNextCell(0); // we don't yet know how many points are to come in RequestData()
469 lineElems->InsertCellPoint(numPoints+iVert); in RequestData()
473 lineElems->InsertCellPoint(iVert-1); in RequestData()
481 lineElems->InsertCellPoint(numPoints+iVert); in RequestData()
485 lineElems->InsertCellPoint(iVert-1); in RequestData()
527 lineElems->UpdateCellCount(nVerts); in RequestData()
751 if (lineElems->GetNumberOfCells()) in RequestData()
753 output->SetLines(lineElems); in RequestData()
962 lineElems->Delete(); in RequestData()
/dports/math/vtk9/VTK-9.1.0/IO/Geometry/
H A DvtkOBJReader.cxx145 vtkCellArray* lineElems = vtkCellArray::New(); in RequestData() local
506 lineElems->InsertNextCell(0); // we don't yet know how many points are to come in RequestData()
526 lineElems->InsertCellPoint(numPoints + iVert); in RequestData()
530 lineElems->InsertCellPoint(iVert - 1); in RequestData()
538 lineElems->InsertCellPoint(numPoints + iVert); in RequestData()
542 lineElems->InsertCellPoint(iVert - 1); in RequestData()
584 lineElems->UpdateCellCount(nVerts); in RequestData()
823 if (lineElems->GetNumberOfCells()) in RequestData()
825 output->SetLines(lineElems); in RequestData()
1059 lineElems->Delete(); in RequestData()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/local/src/
H A DnsPop3Protocol.cpp208 nsTArray<nsCString> lineElems; in net_pop3_load_state() local
209 ParseString(line, ' ', lineElems); in net_pop3_load_state()
210 if (lineElems.Length() < 2) continue; in net_pop3_load_state()
211 nsCString* flags = &lineElems[0]; in net_pop3_load_state()
212 nsCString* uidl = &lineElems[1]; in net_pop3_load_state()
215 if (lineElems.Length() > 2) dateReceived = atoi(lineElems[2].get()); in net_pop3_load_state()