23 lines
567 B
Python
23 lines
567 B
Python
from typing import Any
|
|
|
|
from Base.Metadata import export
|
|
|
|
from Gui.ViewProviderDocumentObject import ViewProviderDocumentObject
|
|
|
|
@export(
|
|
Include="Mod/Fem/Gui/ViewProviderFemPostPipeline.h",
|
|
Namespace="FemGui",
|
|
)
|
|
class ViewProviderFemPostPipeline(ViewProviderDocumentObject):
|
|
"""
|
|
ViewProviderFemPostPipeline class
|
|
"""
|
|
|
|
def transformField(self) -> Any:
|
|
"""Scales values of given result mesh field by given factor"""
|
|
...
|
|
|
|
def updateColorBars(self) -> Any:
|
|
"""Update coloring of pipeline and its childs"""
|
|
...
|