Home
last modified time | relevance | path

Searched refs:polyVertex (Results 1 – 25 of 28) sorted by relevance

12

/dports/math/vtk9/VTK-9.1.0/Filters/Points/
H A DvtkConvertToPointCloud.cxx64 std::vector<vtkIdType> polyVertex(dataset->GetNumberOfPoints()); in RequestData() local
65 std::iota(polyVertex.begin(), polyVertex.end(), 0); in RequestData()
67 verts->InsertNextCell(dataset->GetNumberOfPoints(), polyVertex.data()); in RequestData()
/dports/graphics/f3d/f3d-1.2.1/src/
H A DvtkF3DPostProcessFilter.cxx85 std::vector<vtkIdType> polyVertex(dataset->GetNumberOfPoints()); in RequestData() local
86 std::iota(polyVertex.begin(), polyVertex.end(), 0); in RequestData()
90 verts->InsertNextCell(pd->GetNumberOfPoints(), polyVertex.data()); in RequestData()
95 ug->InsertNextCell(VTK_POLY_VERTEX, ug->GetNumberOfPoints(), polyVertex.data()); in RequestData()
/dports/math/vtk9/VTK-9.1.0/IO/Geometry/Testing/Cxx/
H A DTestHoudiniPolyDataWriter.cxx60 vtkSmartPointer<vtkPolyVertex> polyVertex = vtkSmartPointer<vtkPolyVertex>::New(); in GeneratePolyData() local
61 polyVertex->GetPointIds()->SetNumberOfIds(2); in GeneratePolyData()
62 polyVertex->GetPointIds()->SetId(0, points->InsertNextPoint(1., 0., 0.5)); in GeneratePolyData()
63 polyVertex->GetPointIds()->SetId(1, points->InsertNextPoint(0., 1., 0.5)); in GeneratePolyData()
67 verts->InsertNextCell(polyVertex); in GeneratePolyData()
/dports/math/vtk8/VTK-8.2.0/IO/AMR/
H A DvtkAMRFlashParticlesReader.cxx232 vtkCellArray *polyVertex = vtkCellArray::New(); in GetParticles() local
233 polyVertex ->InsertNextCell( NumberOfParticlesLoaded ); in GetParticles()
236 polyVertex->InsertCellPoint( idx ); in GetParticles()
238 particles->SetVerts( polyVertex ); in GetParticles()
239 polyVertex->Delete(); in GetParticles()
H A DvtkAMREnzoParticlesReader.cxx321 vtkCellArray *polyVertex = vtkCellArray::New(); in GetParticles() local
323 polyVertex->InsertNextCell( NumberOfParticlesLoaded ); in GetParticles()
325 polyVertex->InsertCellPoint( idx ); in GetParticles()
327 particles->SetVerts( polyVertex ); in GetParticles()
328 polyVertex->Delete(); in GetParticles()
/dports/math/vtk8/VTK-8.2.0/IO/Geometry/Testing/Cxx/
H A DTestHoudiniPolyDataWriter.cxx58 vtkSmartPointer<vtkPolyVertex> polyVertex = in GeneratePolyData() local
60 polyVertex->GetPointIds()->SetNumberOfIds(2); in GeneratePolyData()
61 polyVertex->GetPointIds()->SetId(0,points->InsertNextPoint(1.,0.,0.5)); in GeneratePolyData()
62 polyVertex->GetPointIds()->SetId(1,points->InsertNextPoint(0.,1.,0.5)); in GeneratePolyData()
66 verts->InsertNextCell(polyVertex); in GeneratePolyData()
/dports/math/vtk9/VTK-9.1.0/IO/AMR/
H A DvtkAMRFlashParticlesReader.cxx228 vtkCellArray* polyVertex = vtkCellArray::New(); in GetParticles() local
229 polyVertex->InsertNextCell(NumberOfParticlesLoaded); in GetParticles()
232 polyVertex->InsertCellPoint(idx); in GetParticles()
234 particles->SetVerts(polyVertex); in GetParticles()
235 polyVertex->Delete(); in GetParticles()
H A DvtkAMREnzoParticlesReader.cxx307 vtkCellArray* polyVertex = vtkCellArray::New(); in GetParticles() local
309 polyVertex->InsertNextCell(NumberOfParticlesLoaded); in GetParticles()
311 polyVertex->InsertCellPoint(idx); in GetParticles()
313 particles->SetVerts(polyVertex); in GetParticles()
314 polyVertex->Delete(); in GetParticles()
/dports/math/vtk6/VTK-6.2.0/IO/AMR/
H A DvtkAMRFlashParticlesReader.cxx232 vtkCellArray *polyVertex = vtkCellArray::New(); in GetParticles() local
233 polyVertex ->InsertNextCell( NumberOfParticlesLoaded ); in GetParticles()
236 polyVertex->InsertCellPoint( idx ); in GetParticles()
238 particles->SetVerts( polyVertex ); in GetParticles()
239 polyVertex->Delete(); in GetParticles()
H A DvtkAMREnzoParticlesReader.cxx321 vtkCellArray *polyVertex = vtkCellArray::New(); in GetParticles() local
323 polyVertex->InsertNextCell( NumberOfParticlesLoaded ); in GetParticles()
325 polyVertex->InsertCellPoint( idx ); in GetParticles()
327 particles->SetVerts( polyVertex ); in GetParticles()
328 polyVertex->Delete(); in GetParticles()
/dports/math/vtk8/VTK-8.2.0/Common/DataModel/Testing/Cxx/
H A DotherCellBoundaries.cxx68 vtkPolyVertex *polyVertex = vtkPolyVertex::New(); in TestOCB() local
71 polyVertex->GetPointIds()->SetNumberOfIds(2); in TestOCB()
72 polyVertex->GetPointIds()->SetId(0,0); in TestOCB()
73 polyVertex->GetPointIds()->SetId(1,1); in TestOCB()
77 for (k = 0; k < polyVertex->GetPointIds()->GetNumberOfIds(); k++) in TestOCB()
81 polyVertex->CellBoundary (k, polyVertexCoords[j], ids); in TestOCB()
475 polyVertex->Delete(); in TestOCB()
H A DotherCellPosition.cxx75 vtkPolyVertex *polyVertex = vtkPolyVertex::New(); in TestOCP() local
80 polyVertex->GetPointIds()->SetNumberOfIds(2); in TestOCP()
81 polyVertex->GetPointIds()->SetId(0,0); in TestOCP()
82 polyVertex->GetPointIds()->SetId(1,1); in TestOCP()
84 polyVertex->GetPoints()->SetNumberOfPoints(2); in TestOCP()
85 polyVertex->GetPoints()->SetPoint (0, 10.0, 20.0, 30.0); in TestOCP()
86 polyVertex->GetPoints()->SetPoint (1, 30.0, 20.0, 10.0); in TestOCP()
91polyVertex->EvaluatePosition (&polyVertexPoint[j][0], &polyVertexClosest[0], subId, &polyVertexCoo… in TestOCP()
562 polyVertex->Delete(); in TestOCP()
/dports/math/vtk9/VTK-9.1.0/Common/DataModel/Testing/Cxx/
H A DotherCellBoundaries.cxx71 vtkPolyVertex* polyVertex = vtkPolyVertex::New(); in TestOCB() local
74 polyVertex->GetPointIds()->SetNumberOfIds(2); in TestOCB()
75 polyVertex->GetPointIds()->SetId(0, 0); in TestOCB()
76 polyVertex->GetPointIds()->SetId(1, 1); in TestOCB()
80 for (k = 0; k < polyVertex->GetPointIds()->GetNumberOfIds(); k++) in TestOCB()
84 polyVertex->CellBoundary(k, polyVertexCoords[j], ids); in TestOCB()
595 polyVertex->Delete(); in TestOCB()
H A DotherCellPosition.cxx81 vtkPolyVertex* polyVertex = vtkPolyVertex::New(); in TestOCP() local
86 polyVertex->GetPointIds()->SetNumberOfIds(2); in TestOCP()
87 polyVertex->GetPointIds()->SetId(0, 0); in TestOCP()
88 polyVertex->GetPointIds()->SetId(1, 1); in TestOCP()
90 polyVertex->GetPoints()->SetNumberOfPoints(2); in TestOCP()
91 polyVertex->GetPoints()->SetPoint(0, 10.0, 20.0, 30.0); in TestOCP()
92 polyVertex->GetPoints()->SetPoint(1, 30.0, 20.0, 10.0); in TestOCP()
97 polyVertex->EvaluatePosition(&polyVertexPoint[j][0], &polyVertexClosest[0], subId, in TestOCP()
644 polyVertex->Delete(); in TestOCP()
/dports/math/vtk6/VTK-6.2.0/Common/DataModel/Testing/Cxx/
H A DotherCellBoundaries.cxx68 vtkPolyVertex *polyVertex = vtkPolyVertex::New(); in TestOCB() local
71 polyVertex->GetPointIds()->SetNumberOfIds(2); in TestOCB()
72 polyVertex->GetPointIds()->SetId(0,0); in TestOCB()
73 polyVertex->GetPointIds()->SetId(1,1); in TestOCB()
77 for (k = 0; k < polyVertex->GetPointIds()->GetNumberOfIds(); k++) in TestOCB()
81 polyVertex->CellBoundary (k, polyVertexCoords[j], ids); in TestOCB()
475 polyVertex->Delete(); in TestOCB()
H A DotherCellPosition.cxx75 vtkPolyVertex *polyVertex = vtkPolyVertex::New(); in TestOCP() local
80 polyVertex->GetPointIds()->SetNumberOfIds(2); in TestOCP()
81 polyVertex->GetPointIds()->SetId(0,0); in TestOCP()
82 polyVertex->GetPointIds()->SetId(1,1); in TestOCP()
84 polyVertex->GetPoints()->SetNumberOfPoints(2); in TestOCP()
85 polyVertex->GetPoints()->SetPoint (0, 10.0, 20.0, 30.0); in TestOCP()
86 polyVertex->GetPoints()->SetPoint (1, 30.0, 20.0, 10.0); in TestOCP()
91polyVertex->EvaluatePosition (&polyVertexPoint[j][0], &polyVertexClosest[0], subId, &polyVertexCoo… in TestOCP()
562 polyVertex->Delete(); in TestOCP()
/dports/math/vtk8/VTK-8.2.0/Filters/Modeling/Testing/Cxx/
H A DTestVolumeOfRevolutionFilter.cxx69 vtkSmartPointer<vtkPolyVertex> polyVertex = in GeneratePolyData() local
71 polyVertex->GetPointIds()->SetNumberOfIds(2); in GeneratePolyData()
72 polyVertex->GetPointIds()->SetId(0,points->InsertNextPoint(.25,0.,0.)); in GeneratePolyData()
73 polyVertex->GetPointIds()->SetId(1,points->InsertNextPoint(0.,.35,0.)); in GeneratePolyData()
77 verts->InsertNextCell(polyVertex); in GeneratePolyData()
/dports/math/vtk9/VTK-9.1.0/Filters/Modeling/Testing/Cxx/
H A DTestVolumeOfRevolutionFilter.cxx70 vtkSmartPointer<vtkPolyVertex> polyVertex = vtkSmartPointer<vtkPolyVertex>::New(); in GeneratePolyData() local
71 polyVertex->GetPointIds()->SetNumberOfIds(2); in GeneratePolyData()
72 polyVertex->GetPointIds()->SetId(0, points->InsertNextPoint(.25, 0., 0.)); in GeneratePolyData()
73 polyVertex->GetPointIds()->SetId(1, points->InsertNextPoint(0., .35, 0.)); in GeneratePolyData()
77 verts->InsertNextCell(polyVertex); in GeneratePolyData()
/dports/math/vtk8/VTK-8.2.0/Filters/FlowPaths/
H A DvtkLagrangianParticleTracker.cxx682 vtkNew<vtkCellArray> polyVertex; in InsertPolyVertexCell() local
683 polyVertex->Allocate(polyVertex->EstimateSize(1, nPoint)); in InsertPolyVertexCell()
684 polyVertex->InsertNextCell(nPoint); in InsertPolyVertexCell()
687 polyVertex->InsertCellPoint(i); in InsertPolyVertexCell()
689 polydata->SetVerts(polyVertex); in InsertPolyVertexCell()
700 vtkNew<vtkCellArray> polyVertex; in InsertVertexCells() local
701 polyVertex->Allocate(polyVertex->EstimateSize(1, nPoint)); in InsertVertexCells()
704 polyVertex->InsertNextCell(1); in InsertVertexCells()
705 polyVertex->InsertCellPoint(i); in InsertVertexCells()
707 polydata->SetVerts(polyVertex); in InsertVertexCells()
/dports/math/vtk9/VTK-9.1.0/Filters/FlowPaths/
H A DvtkLagrangianParticleTracker.cxx724 vtkNew<vtkCellArray> polyVertex; in InsertPolyVertexCell() local
725 polyVertex->AllocateEstimate(1, nPoint); in InsertPolyVertexCell()
726 polyVertex->InsertNextCell(nPoint); in InsertPolyVertexCell()
729 polyVertex->InsertCellPoint(i); in InsertPolyVertexCell()
731 polydata->SetVerts(polyVertex); in InsertPolyVertexCell()
742 vtkNew<vtkCellArray> polyVertex; in InsertVertexCells() local
743 polyVertex->AllocateEstimate(1, nPoint); in InsertVertexCells()
746 polyVertex->InsertNextCell(1); in InsertVertexCells()
747 polyVertex->InsertCellPoint(i); in InsertVertexCells()
749 polydata->SetVerts(polyVertex); in InsertVertexCells()
/dports/math/vtk9/VTK-9.1.0/IO/OMF/core/
H A DOMFElement.cxx384 vtkNew<vtkCellArray> polyVertex; in ProcessGeometry() local
385 polyVertex->AllocateEstimate(1, nPoints); in ProcessGeometry()
386 polyVertex->InsertNextCell(nPoints); in ProcessGeometry()
389 polyVertex->InsertCellPoint(i); in ProcessGeometry()
391 poly->SetVerts(polyVertex); in ProcessGeometry()
/dports/math/vtk8/VTK-8.2.0/Filters/Geometry/Testing/Cxx/
H A DTestUnstructuredGridGeometryFilter.cxx174 vtkPolyVertex *polyVertex=vtkPolyVertex::New(); in TestUnstructuredGridGeometryFilter() local
175 polyVertex->GetPointIds()->SetNumberOfIds(2); in TestUnstructuredGridGeometryFilter()
176 polyVertex->GetPointIds()->SetId(0,pointId); in TestUnstructuredGridGeometryFilter()
178 polyVertex->GetPointIds()->SetId(1,pointId); in TestUnstructuredGridGeometryFilter()
183 grid->InsertNextCell(polyVertex->GetCellType(),polyVertex->GetPointIds()); in TestUnstructuredGridGeometryFilter()
184 polyVertex->Delete(); in TestUnstructuredGridGeometryFilter()
/dports/math/vtk6/VTK-6.2.0/Filters/Geometry/Testing/Cxx/
H A DTestUnstructuredGridGeometryFilter.cxx173 vtkPolyVertex *polyVertex=vtkPolyVertex::New(); in TestUnstructuredGridGeometryFilter() local
174 polyVertex->GetPointIds()->SetNumberOfIds(2); in TestUnstructuredGridGeometryFilter()
175 polyVertex->GetPointIds()->SetId(0,pointId); in TestUnstructuredGridGeometryFilter()
177 polyVertex->GetPointIds()->SetId(1,pointId); in TestUnstructuredGridGeometryFilter()
182 grid->InsertNextCell(polyVertex->GetCellType(),polyVertex->GetPointIds()); in TestUnstructuredGridGeometryFilter()
183 polyVertex->Delete(); in TestUnstructuredGridGeometryFilter()
/dports/math/vtk8/VTK-8.2.0/Filters/General/
H A DvtkCellValidator.cxx487 vtkCellValidator::State vtkCellValidator::Check(vtkPolyVertex* polyVertex, in Check() argument
493 if (polyVertex->GetNumberOfPoints() < 1) in Check()
/dports/math/vtk8/VTK-8.2.0/Filters/General/Testing/Cxx/
H A DTestCellValidator.cxx134 vtkSmartPointer<vtkPolyVertex> polyVertex = MakePolyVertex(); in TestCellValidator() local
191 CheckCell(polyVertex); in TestCellValidator()

12