Skip to content

Wrap default value for parameters with array decorators.

David Gobbi requested to merge dgobbi/vtk:update-const-correct into master

Some VTK method parameters are of the form void f(int x[3] = 0). Before this patch, the python wrappers ignored the default value for these parameters, and always required that the parameter was passed. After this patch, these parameters are optional in python. This change is needed for the new vtkAlgorithm Update() interface.

Merge request reports