-
Notifications
You must be signed in to change notification settings - Fork 21
/
OCCReaderServerManager.xml
72 lines (66 loc) · 2.42 KB
/
OCCReaderServerManager.xml
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
<!--# Copyright (C) 2014-2015 KIT-INR/NK
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# -->
<ServerManagerConfiguration>
<ProxyGroup name="sources">
<SourceProxy name="OCCReader"
class="vtkOCCReader"
label="OCC Reader">
<Documentation
short_help="Fetch CAD data from BREP, IGES, and STEP files"
long_help="Fetch CAD data from BREP, IGES, and STEP files">
Reading CAD data from BREP, IGES, and STEP files.
</Documentation>
<StringVectorProperty
name="FileName"
command="SetFileName"
number_of_elements="1"
animateable="0">
<FileListDomain name="files" />
<Documentation>
This property specifies the file name for the table reader.
</Documentation>
</StringVectorProperty>
<IntVectorProperty
name="DispalyMode"
command="SetMode"
number_of_elements="1"
default_values="2">
<IntRangeDomain name="range" min="1" max="3"/>
<Documentation>
This property specifies the dispaly mode, 1 is wireframe ,
2 is shading, and 3 is wireframe + shading.
</Documentation>
</IntVectorProperty>
<DoubleVectorProperty
name="Deflection"
command="SetDeflection"
number_of_elements="1"
default_values="0.001">
<DoubleRangeDomain name="range" min="0.00001" max="0.001"/>
<Documentation>
This property specifies smoothing of the shading.
</Documentation>
</DoubleVectorProperty>
<Hints>
<ReaderFactory extensions="step stp iges igs brep"
file_description="OpenCASCADE CAD Files" />
</Hints>
<!-- End OCC2VTKCorbaSource -->
</SourceProxy>
</ProxyGroup>
</ServerManagerConfiguration>