Home
last modified time | relevance | path

Searched refs:mapper1 (Results 1 – 25 of 344) sorted by relevance

12345678910>>...14

/dports/math/vtk8/VTK-8.2.0/Rendering/Core/Testing/Cxx/
H A DTestActor2D.cxx31 vtkNew<vtkPolyDataMapper> mapper1; in TestActor2D() local
32 mapper1->SetInputConnection(planeSource1->GetOutputPort()); in TestActor2D()
33 mapper1->ScalarVisibilityOn(); in TestActor2D()
34 mapper1->SetLookupTable(lut); in TestActor2D()
35 mapper1->UseLookupTableScalarRangeOn(); in TestActor2D()
36 mapper1->SetScalarModeToUsePointFieldData(); in TestActor2D()
37 mapper1->ColorByArrayComponent("TextureCoordinates", 0); in TestActor2D()
38 mapper1->InterpolateScalarsBeforeMappingOn(); in TestActor2D()
41 actor1->SetMapper(mapper1); in TestActor2D()
/dports/math/vtk9/VTK-9.1.0/Rendering/Core/Testing/Cxx/
H A DTestActor2D.cxx30 vtkNew<vtkPolyDataMapper> mapper1; in TestActor2D() local
31 mapper1->SetInputConnection(planeSource1->GetOutputPort()); in TestActor2D()
32 mapper1->ScalarVisibilityOn(); in TestActor2D()
33 mapper1->SetLookupTable(lut); in TestActor2D()
34 mapper1->UseLookupTableScalarRangeOn(); in TestActor2D()
35 mapper1->SetScalarModeToUsePointFieldData(); in TestActor2D()
36 mapper1->ColorByArrayComponent("TextureCoordinates", 0); in TestActor2D()
37 mapper1->InterpolateScalarsBeforeMappingOn(); in TestActor2D()
40 actor1->SetMapper(mapper1); in TestActor2D()
/dports/math/vtk6/VTK-6.2.0/Rendering/Core/Testing/Cxx/
H A DTestActor2D.cxx32 vtkNew<vtkPolyDataMapper> mapper1; in TestActor2D() local
33 mapper1->SetInputConnection(planeSource1->GetOutputPort()); in TestActor2D()
34 mapper1->ScalarVisibilityOn(); in TestActor2D()
35 mapper1->SetLookupTable(lut.GetPointer()); in TestActor2D()
36 mapper1->UseLookupTableScalarRangeOn(); in TestActor2D()
37 mapper1->SetScalarModeToUsePointFieldData(); in TestActor2D()
38 mapper1->ColorByArrayComponent("TextureCoordinates", 0); in TestActor2D()
39 mapper1->InterpolateScalarsBeforeMappingOn(); in TestActor2D()
42 actor1->SetMapper(mapper1.GetPointer()); in TestActor2D()
/dports/math/vtk6/VTK-6.2.0/Filters/Core/Testing/Tcl/
H A DmultipleComponentContour.tcl41 vtkPolyDataMapper mapper1
42 mapper1 SetInputConnection [cf1 GetOutputPort]
43 mapper1 SetImmediateModeRendering 1
44 mapper1 SetScalarRange 0 1
45 mapper1 SetScalarVisibility 0
46 mapper1 Update
55 actor1 SetMapper mapper1
/dports/math/vtk6/VTK-6.2.0/Filters/Core/Testing/Python/
H A DmultipleComponentContour.py37 mapper1 = vtk.vtkPolyDataMapper() variable
38 mapper1.SetInputConnection(cf1.GetOutputPort())
39 mapper1.SetImmediateModeRendering(1)
40 mapper1.SetScalarRange(0,1)
41 mapper1.SetScalarVisibility(0)
42 mapper1.Update()
49 actor1.SetMapper(mapper1)
/dports/math/vtk6/VTK-6.2.0/Filters/General/Testing/Tcl/
H A DtestDataSetTriangleFilter.tcl56 vtkPolyDataMapper mapper1
57 mapper1 SetInputConnection [geom GetOutputPort]
58 mapper1 ScalarVisibilityOn
59 mapper1 SetScalarRange 0 1200
60 mapper1 SetPiece $PIECE
61 mapper1 SetNumberOfPieces $NUMBER_OF_PIECES
69 actor1 SetMapper mapper1
/dports/math/vtk9/VTK-9.1.0/Filters/General/Testing/Python/
H A DtestDataSetTriangleFilter.py46 mapper1 = vtk.vtkPolyDataMapper() variable
47 mapper1.SetInputConnection(geom.GetOutputPort())
48 mapper1.ScalarVisibilityOn()
49 mapper1.SetScalarRange(0,1200)
50 mapper1.SetPiece(PIECE)
51 mapper1.SetNumberOfPieces(NUMBER_OF_PIECES)
60 actor1.SetMapper(mapper1)
/dports/math/vtk8/VTK-8.2.0/Filters/General/Testing/Python/
H A DtestDataSetTriangleFilter.py46 mapper1 = vtk.vtkPolyDataMapper() variable
47 mapper1.SetInputConnection(geom.GetOutputPort())
48 mapper1.ScalarVisibilityOn()
49 mapper1.SetScalarRange(0,1200)
50 mapper1.SetPiece(PIECE)
51 mapper1.SetNumberOfPieces(NUMBER_OF_PIECES)
59 actor1.SetMapper(mapper1)
/dports/math/vtk6/VTK-6.2.0/Filters/General/Testing/Python/
H A DtestDataSetTriangleFilter.py47 mapper1 = vtk.vtkPolyDataMapper() variable
48 mapper1.SetInputConnection(geom.GetOutputPort())
49 mapper1.ScalarVisibilityOn()
50 mapper1.SetScalarRange(0,1200)
51 mapper1.SetPiece(PIECE)
52 mapper1.SetNumberOfPieces(NUMBER_OF_PIECES)
59 actor1.SetMapper(mapper1)
/dports/math/vtk9/VTK-9.1.0/Rendering/Volume/Testing/Cxx/
H A DTestSmartVolumeMapperWindowLevel.cxx623 vtkNew<vtkSmartVolumeMapper> mapper1; in TestSmartVolumeMapperWindowLevel() local
624 mapper1->SetInputConnection(reader->GetOutputPort()); in TestSmartVolumeMapperWindowLevel()
625 mapper1->SetRequestedRenderModeToDefault(); in TestSmartVolumeMapperWindowLevel()
634 mapper1->SetAutoAdjustSampleDistances(0); in TestSmartVolumeMapperWindowLevel()
635 mapper1->SetInteractiveAdjustSampleDistances(0); in TestSmartVolumeMapperWindowLevel()
656 mapper1->SetBlendModeToMaximumIntensity(); in TestSmartVolumeMapperWindowLevel()
665 volume1->SetMapper(mapper1); in TestSmartVolumeMapperWindowLevel()
/dports/math/vtk8/VTK-8.2.0/Rendering/Volume/Testing/Cxx/
H A DTestSmartVolumeMapperWindowLevel.cxx627 vtkNew<vtkSmartVolumeMapper> mapper1; in TestSmartVolumeMapperWindowLevel() local
628 mapper1->SetInputConnection(reader->GetOutputPort()); in TestSmartVolumeMapperWindowLevel()
629 mapper1->SetRequestedRenderModeToDefault(); in TestSmartVolumeMapperWindowLevel()
638 mapper1->SetAutoAdjustSampleDistances(0); in TestSmartVolumeMapperWindowLevel()
639 mapper1->SetInteractiveAdjustSampleDistances(0); in TestSmartVolumeMapperWindowLevel()
660 mapper1->SetBlendModeToMaximumIntensity(); in TestSmartVolumeMapperWindowLevel()
669 volume1->SetMapper(mapper1); in TestSmartVolumeMapperWindowLevel()
/dports/math/vtk9/VTK-9.1.0/Filters/Core/Testing/Python/
H A DmultipleComponentContour.py36 mapper1 = vtk.vtkPolyDataMapper() variable
37 mapper1.SetInputConnection(cf1.GetOutputPort())
38 mapper1.SetScalarRange(0,1)
39 mapper1.SetScalarVisibility(0)
40 mapper1.Update()
46 actor1.SetMapper(mapper1)
/dports/math/vtk8/VTK-8.2.0/Filters/Core/Testing/Python/
H A DmultipleComponentContour.py36 mapper1 = vtk.vtkPolyDataMapper() variable
37 mapper1.SetInputConnection(cf1.GetOutputPort())
38 mapper1.SetScalarRange(0,1)
39 mapper1.SetScalarVisibility(0)
40 mapper1.Update()
46 actor1.SetMapper(mapper1)
/dports/math/vtk9/VTK-9.1.0/Rendering/OpenVR/Testing/Cxx/
H A DMedical.cxx98 vtkNew<vtkGPUVolumeRayCastMapper> mapper1; in Medical() local
99 mapper1->SetInputConnection(reader->GetOutputPort()); in Medical()
100 mapper1->SetInputConnection(shrink->GetOutputPort()); in Medical()
101 mapper1->SetAutoAdjustSampleDistances(0); in Medical()
102 mapper1->SetSampleDistance(0.9); in Medical()
103 mapper1->UseJitteringOn(); in Medical()
140 volume1->SetMapper(mapper1); in Medical()
/dports/math/vtk8/VTK-8.2.0/Rendering/OpenVR/Testing/Cxx/
H A DMedical.cxx98 vtkNew<vtkGPUVolumeRayCastMapper> mapper1; in Medical() local
99 mapper1->SetInputConnection(reader->GetOutputPort()); in Medical()
100 mapper1->SetInputConnection(shrink->GetOutputPort()); in Medical()
101 mapper1->SetAutoAdjustSampleDistances(0); in Medical()
102 mapper1->SetSampleDistance(0.9); in Medical()
103 mapper1->UseJitteringOn(); in Medical()
140 volume1->SetMapper(mapper1); in Medical()
/dports/math/vtk8/VTK-8.2.0/Filters/HyperTree/Testing/Cxx/
H A DTestHyperTreeGridBinaryHyperbolicParaboloidMaterial.cxx72 vtkNew<vtkPolyDataMapper> mapper1; in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial() local
73 mapper1->SetInputConnection( geometry->GetOutputPort() ); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
74 mapper1->SetScalarRange( pd->GetCellData()->GetScalars()->GetRange() ); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
75 mapper1->UseLookupTableScalarRangeOn(); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
76 mapper1->SetLookupTable( colorFunction ); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
80 actor1->SetMapper( mapper1 ); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
/dports/math/vtk9/VTK-9.1.0/Filters/HyperTree/Testing/Cxx/
H A DTestHyperTreeGridBinaryHyperbolicParaboloidMaterial.cxx68 vtkNew<vtkPolyDataMapper> mapper1; in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial() local
69 mapper1->SetInputConnection(geometry->GetOutputPort()); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
70 mapper1->SetScalarRange(pd->GetCellData()->GetArray("Depth")->GetRange()); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
71 mapper1->UseLookupTableScalarRangeOn(); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
72 mapper1->SetLookupTable(colorFunction); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
76 actor1->SetMapper(mapper1); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
/dports/math/vtk6/VTK-6.2.0/Imaging/Core/Testing/Tcl/
H A DResliceInterpolationModes.tcl42 vtkImageMapper mapper1
43 mapper1 SetInputConnection [reslice1 GetOutputPort]
44 mapper1 SetColorWindow 2000
45 mapper1 SetColorLevel 1000
46 mapper1 SetZSlice 0
67 actor1 SetMapper mapper1
H A DResliceWrapPad.tcl47 vtkImageMapper mapper1
48 mapper1 SetInputConnection [reslice1 GetOutputPort]
49 mapper1 SetColorWindow 2000
50 mapper1 SetColorLevel 1000
51 mapper1 SetZSlice 0
72 actor1 SetMapper mapper1
H A DResliceInterpolationOblique.tcl53 vtkImageMapper mapper1
54 mapper1 SetInputConnection [reslice1 GetOutputPort]
55 mapper1 SetColorWindow 2000
56 mapper1 SetColorLevel 1000
57 mapper1 SetZSlice 0
78 actor1 SetMapper mapper1
H A DResliceMirrorPad.tcl55 vtkImageMapper mapper1
56 mapper1 SetInputConnection [reslice1 GetOutputPort]
57 mapper1 SetColorWindow 2000
58 mapper1 SetColorLevel 1000
59 mapper1 SetZSlice 0
80 actor1 SetMapper mapper1
/dports/math/vtk6/VTK-6.2.0/Filters/HyperTree/Testing/Cxx/
H A DTestHyperTreeGridBinaryHyperbolicParaboloidMaterial.cxx71 vtkNew<vtkPolyDataMapper> mapper1; in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial() local
72 mapper1->SetInputConnection( geometry->GetOutputPort() ); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
73 mapper1->SetScalarRange( pd->GetCellData()->GetScalars()->GetRange() ); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
74 mapper1->UseLookupTableScalarRangeOn(); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
75 mapper1->SetLookupTable( colorFunction.GetPointer() ); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
79 actor1->SetMapper( mapper1.GetPointer() ); in TestHyperTreeGridBinaryHyperbolicParaboloidMaterial()
/dports/math/vtk8/VTK-8.2.0/Imaging/Core/Testing/Python/
H A DResliceInterpolationModes.py39 mapper1 = vtk.vtkImageMapper() variable
40 mapper1.SetInputConnection(reslice1.GetOutputPort())
41 mapper1.SetColorWindow(2000)
42 mapper1.SetColorLevel(1000)
43 mapper1.SetZSlice(0)
60 actor1.SetMapper(mapper1)
/dports/math/vtk9/VTK-9.1.0/Imaging/Core/Testing/Python/
H A DResliceInterpolationModes.py39 mapper1 = vtk.vtkImageMapper() variable
40 mapper1.SetInputConnection(reslice1.GetOutputPort())
41 mapper1.SetColorWindow(2000)
42 mapper1.SetColorLevel(1000)
43 mapper1.SetZSlice(0)
60 actor1.SetMapper(mapper1)
/dports/math/vtk6/VTK-6.2.0/Imaging/Core/Testing/Python/
H A DResliceInterpolationModes.py40 mapper1 = vtk.vtkImageMapper() variable
41 mapper1.SetInputConnection(reslice1.GetOutputPort())
42 mapper1.SetColorWindow(2000)
43 mapper1.SetColorLevel(1000)
44 mapper1.SetZSlice(0)
61 actor1.SetMapper(mapper1)

12345678910>>...14