MarchingCasesD
VTKExamples/Python/VisualizationAlgorithms/MarchingCasesD
Other Languages
See (Cxx)
Question
If you have a simple question about this example contact us at VTKExamplesProject If your question is more complex and may require extended discussion, please use the VTK Discourse Forum
Code¶
MarchingCasesD.py
#!/usr/bin/env python """ Marching cubes cases. Case 7 is rotated 180 degrees about the y-axis with no label. Note: Make sure MarchingCases.py is in the same directory as this program. """ import MarchingCases def main(): mc_cases = [7] rotation = 2 label = False MarchingCases.marching_cubes(mc_cases, rotation, label) if __name__ == '__main__': main()