[FEM] fix pipeline recompute issue
- after a simulation was run, the pipelines and its childs are recomputed but its shape coloring is not updated. - also update XML documentation - also remove comment in tasks.py for now
This commit is contained in:
@@ -40,6 +40,16 @@ std::string ViewProviderFemPostPipelinePy::representation(void) const
|
||||
return std::string("<ViewProviderFemPostPipeline object>");
|
||||
}
|
||||
|
||||
PyObject *ViewProviderFemPostPipelinePy::updateColorBars(PyObject *args)
|
||||
{
|
||||
if (!PyArg_ParseTuple(args, ""))
|
||||
return nullptr;
|
||||
|
||||
this->getViewProviderFemPostPipelinePtr()->updateColorBars();
|
||||
|
||||
Py_Return;
|
||||
}
|
||||
|
||||
PyObject *ViewProviderFemPostPipelinePy::transformField(PyObject *args)
|
||||
{
|
||||
char *FieldName;
|
||||
|
||||
Reference in New Issue
Block a user