├── .gitignore ├── README.md ├── camerafrustumplanes.py ├── colorcells.py ├── colorcellswithrgb.py ├── coloredcube.py ├── coloredlines.py ├── coloredpoints.py ├── colorglyphs.py ├── contoursfrompolydata.py ├── curvatures.py ├── cutter.py ├── datasetsurface.py ├── distancetocamera.py ├── elevationfilter.py ├── externalcontour.py ├── filledpolygon.py ├── gaussian_splat.py ├── geometricobjects.py ├── glyph2d.py ├── glyph3d.py ├── glyph3dmapper.py ├── highlight_bad_cells.py ├── implicitboolean.py ├── implicitdataset.py ├── implicitdatasetclipping.py ├── implicitfunction.py ├── implicitfunction2.py ├── interactorstyle.py ├── kochanekspline.py ├── main.py ├── marchingcubes.py ├── meshquality.py ├── orientedglyphs.py ├── outlinefilter.py ├── parametricobjects.py ├── parametricspline.py ├── platonicsolidobjects.py ├── pointsource.py ├── polydatapointsampler.py ├── polylines.py ├── proppicker.py ├── quadraticsuface.py ├── ribbonfilter.py ├── ruledsurfacefilter.py ├── samplefunction.py ├── screenshot.png ├── scurvespline.py ├── simple.py ├── solidclip.py ├── subdivision.py ├── surface_from_unorganized_points.py ├── trianglecoloredpoints.py ├── triangulate_a_mesh.py ├── tubefilter.py ├── tubes.py ├── tubesfromsplines.py ├── tubeswithvaryingradiusandcolors.py ├── twoactors.py ├── tworenders.py └── visualizedirectedgraph.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/README.md -------------------------------------------------------------------------------- /camerafrustumplanes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/camerafrustumplanes.py -------------------------------------------------------------------------------- /colorcells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/colorcells.py -------------------------------------------------------------------------------- /colorcellswithrgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/colorcellswithrgb.py -------------------------------------------------------------------------------- /coloredcube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/coloredcube.py -------------------------------------------------------------------------------- /coloredlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/coloredlines.py -------------------------------------------------------------------------------- /coloredpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/coloredpoints.py -------------------------------------------------------------------------------- /colorglyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/colorglyphs.py -------------------------------------------------------------------------------- /contoursfrompolydata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/contoursfrompolydata.py -------------------------------------------------------------------------------- /curvatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/curvatures.py -------------------------------------------------------------------------------- /cutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/cutter.py -------------------------------------------------------------------------------- /datasetsurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/datasetsurface.py -------------------------------------------------------------------------------- /distancetocamera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/distancetocamera.py -------------------------------------------------------------------------------- /elevationfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/elevationfilter.py -------------------------------------------------------------------------------- /externalcontour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/externalcontour.py -------------------------------------------------------------------------------- /filledpolygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/filledpolygon.py -------------------------------------------------------------------------------- /gaussian_splat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/gaussian_splat.py -------------------------------------------------------------------------------- /geometricobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/geometricobjects.py -------------------------------------------------------------------------------- /glyph2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/glyph2d.py -------------------------------------------------------------------------------- /glyph3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/glyph3d.py -------------------------------------------------------------------------------- /glyph3dmapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/glyph3dmapper.py -------------------------------------------------------------------------------- /highlight_bad_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/highlight_bad_cells.py -------------------------------------------------------------------------------- /implicitboolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/implicitboolean.py -------------------------------------------------------------------------------- /implicitdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/implicitdataset.py -------------------------------------------------------------------------------- /implicitdatasetclipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/implicitdatasetclipping.py -------------------------------------------------------------------------------- /implicitfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/implicitfunction.py -------------------------------------------------------------------------------- /implicitfunction2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/implicitfunction2.py -------------------------------------------------------------------------------- /interactorstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/interactorstyle.py -------------------------------------------------------------------------------- /kochanekspline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/kochanekspline.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/main.py -------------------------------------------------------------------------------- /marchingcubes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/marchingcubes.py -------------------------------------------------------------------------------- /meshquality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/meshquality.py -------------------------------------------------------------------------------- /orientedglyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/orientedglyphs.py -------------------------------------------------------------------------------- /outlinefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/outlinefilter.py -------------------------------------------------------------------------------- /parametricobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/parametricobjects.py -------------------------------------------------------------------------------- /parametricspline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/parametricspline.py -------------------------------------------------------------------------------- /platonicsolidobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/platonicsolidobjects.py -------------------------------------------------------------------------------- /pointsource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/pointsource.py -------------------------------------------------------------------------------- /polydatapointsampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/polydatapointsampler.py -------------------------------------------------------------------------------- /polylines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/polylines.py -------------------------------------------------------------------------------- /proppicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/proppicker.py -------------------------------------------------------------------------------- /quadraticsuface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/quadraticsuface.py -------------------------------------------------------------------------------- /ribbonfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/ribbonfilter.py -------------------------------------------------------------------------------- /ruledsurfacefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/ruledsurfacefilter.py -------------------------------------------------------------------------------- /samplefunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/samplefunction.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/screenshot.png -------------------------------------------------------------------------------- /scurvespline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/scurvespline.py -------------------------------------------------------------------------------- /simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/simple.py -------------------------------------------------------------------------------- /solidclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/solidclip.py -------------------------------------------------------------------------------- /subdivision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/subdivision.py -------------------------------------------------------------------------------- /surface_from_unorganized_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/surface_from_unorganized_points.py -------------------------------------------------------------------------------- /trianglecoloredpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/trianglecoloredpoints.py -------------------------------------------------------------------------------- /triangulate_a_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/triangulate_a_mesh.py -------------------------------------------------------------------------------- /tubefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/tubefilter.py -------------------------------------------------------------------------------- /tubes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/tubes.py -------------------------------------------------------------------------------- /tubesfromsplines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/tubesfromsplines.py -------------------------------------------------------------------------------- /tubeswithvaryingradiusandcolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/tubeswithvaryingradiusandcolors.py -------------------------------------------------------------------------------- /twoactors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/twoactors.py -------------------------------------------------------------------------------- /tworenders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/tworenders.py -------------------------------------------------------------------------------- /visualizedirectedgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbzhang800/VTKDemoForPyQt/HEAD/visualizedirectedgraph.py --------------------------------------------------------------------------------