1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
<ServerManagerConfiguration>
<ProxyGroup name="sources">
<SourceProxy class="vtkSteeringDataGenerator" name="SteerableParameters">
<IntVectorProperty name="PartitionType"
command="SetPartitionType"
number_of_elements="1"
default_values="4"
panel_visibility="never">
</IntVectorProperty>
<IntVectorProperty name="FieldAssociation"
command="SetFieldAssociation"
number_of_elements="1"
default_values="0"
panel_visibility="never">
</IntVectorProperty>
<DoubleVectorProperty name="Center"
command="SetTuple3Double"
use_index="1"
clean_command="Clear"
initial_string="coords"
number_of_elements_per_command="3"
repeat_command="1">
</DoubleVectorProperty>
<IntVectorProperty name="Type"
command="SetTuple1Int"
clean_command="Clear"
use_index="1"
initial_string="type"
number_of_elements_per_command="1"
repeat_command="1">
</IntVectorProperty>
<PropertyGroup label="SteerableParameters" panel_widget="PropertyCollection">
<Property name="Center" function="PrototypeCenter" />
<Property name="Type" function="PrototypeType" />
<!-- here, "name" identifies the property on this proxy, while
"function" identifies the property on the prototype proxy. If
"function" is not specified, same value as "name" is assumed. -->
<Hints>
<PropertyCollectionWidgetPrototype group="misc" name="SteerableParametersPrototype" />
</Hints>
</PropertyGroup>
<Hints>
<CatalystInitializePropertiesWithMesh mesh="steerable">
<Property name="Center" association="point" array="coords" />
<Property name="Type" association="point" array="steerable" />
</CatalystInitializePropertiesWithMesh>
</Hints>
</SourceProxy>
</ProxyGroup>
<ProxyGroup name="misc">
<Proxy name="SteerableParametersPrototype" label="SteerableParameters" >
<DoubleVectorProperty name="PrototypeCenter"
label="Center"
number_of_elements="3"
default_values="0 0 0">
<DoubleRangeDomain name="range" />
<Documentation>
Specify center for the oscillator.
</Documentation>
</DoubleVectorProperty>
<IntVectorProperty name="PrototypeType"
label="Type"
number_of_elements="1"
default_values="0">
<EnumerationDomain name="enum">
<Entry text="damped" value="0" />
<Entry text="decaying" value="1" />
<Entry text="periodic" value="2" />
</EnumerationDomain>
</IntVectorProperty>
</Proxy>
</ProxyGroup>
</ServerManagerConfiguration>
|