mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<ServerManagerConfiguration>
|
|
<ProxyGroup name="representations">
|
|
<RepresentationProxy name="MySpecialRepresentation"
|
|
class="vtkMySpecialRepresentation"
|
|
processes="client|renderserver|dataserver"
|
|
base_proxygroup="representations"
|
|
base_proxyname="SurfaceRepresentation">
|
|
<Documentation>
|
|
This is the new representation type we are adding. This is identical to
|
|
the SurfaceRepresentation except that we are overriding the mapper with
|
|
our mapper.
|
|
</Documentation>
|
|
|
|
<!-- End of MySpecialRepresentation -->
|
|
</RepresentationProxy>
|
|
|
|
<Extension name="GeometryRepresentation">
|
|
<Documentation>
|
|
Extends standard GeometryRepresentation by adding
|
|
MySpecialRepresentation as a new type of representation.
|
|
</Documentation>
|
|
|
|
<!-- this adds to what is already defined in PVRepresentationBase -->
|
|
<RepresentationType subproxy="MySpecialRepresentation"
|
|
text="Special Mapper" subtype="Surface" />
|
|
|
|
<SubProxy>
|
|
<Proxy name="MySpecialRepresentation"
|
|
proxygroup="representations" proxyname="MySpecialRepresentation">
|
|
</Proxy>
|
|
<ShareProperties subproxy="SurfaceRepresentation">
|
|
<Exception name="Input" />
|
|
<Exception name="Visibility" />
|
|
<Exception name="Representation" />
|
|
</ShareProperties>
|
|
</SubProxy>
|
|
</Extension>
|
|
</ProxyGroup>
|
|
|
|
</ServerManagerConfiguration>
|