Skip to content
Snippets Groups Projects
Commit 08d95a62 authored by Andrew Maclean's avatar Andrew Maclean
Browse files

Moving MarchingSquares.cs to Modelling

parent 5f0df22f
No related branches found
No related tags found
1 merge request!183Reference only examples visible in vtk-examples on the web
......@@ -155,7 +155,6 @@ class VTKClassesInExamples(object):
exclude_dirs = ['Deprecated']
if eg == 'CSharp':
fn_pattern = re.compile(r'^[0-9a-zA-Z_\-]+\.cs$')
exclude_dirs = exclude_dirs + ['WishList']
elif eg == 'Cxx':
fn_pattern = re.compile(
r'^[0-9a-zA-Z_\-]+\.(hxx|HXX|hpp|HPP|[hH]\+\+|[hH]|cpp|CPP|cxx|CXX|[cC]\+\+|txx|TXX)$')
......@@ -171,8 +170,8 @@ class VTKClassesInExamples(object):
# Walk the tree.
for root, directories, files in os.walk(str(directory)):
# The only visible folders on the web pages are those directly under the language
# e.g. Cxx/xx is visible but Cxx/xx/yy is not.
# The only visible folders on the web pages are those directly under the language.
# So we keep folders like Cxx/xx but exclude folders like Cxx/xx/yy.
if root[len(str(directory)):].count(os.sep) > 1:
continue
sp = PurePath(root).parts
......
......@@ -149,7 +149,7 @@ These examples demonstrate how to create an display one of the many vtkParametri
[ImplicitSphere](/CSharp/ImplicitFunctions/ImplicitSphere) | An implicit representation of a sphere
[IsoContours](/CSharp/ImplicitFunctions/IsoContours) | Visualize different isocontours using a slider
[MarchingCubes](/CSharp/Modelling/MarchingCubes) | Create a voxelized spher Marching cubes
[MarchingSquares](/CSharp/WishList/Modelling/MarchingSquares) | Create a contour from a structured point set (image Marching squares
[MarchingSquares](/CSharp/Modelling/MarchingSquares) | Create a contour from a structured point set (image Marching squares)
[SampleFunction](/CSharp/ImplicitFunctions/SampleFunction) | Sample and visualize an implicit function
## Working with 3D Data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment