-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuracion.xsd
executable file
·40 lines (40 loc) · 1.44 KB
/
configuracion.xsd
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
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified"
xmlns="http://tempuri.org/XMLSchema.xsd" xmlns:mstns="http://tempuri.org/XMLSchema.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="configuracion">
<xs:complexType>
<xs:sequence>
<xs:sequence>
<xs:element ref="camara" />
<xs:element ref="grupo" />
</xs:sequence>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="grupo">
<xs:complexType>
<xs:sequence>
<xs:element name="nombre" type="xs:float" />
<xs:element name="pivotx" type="xs:float" />
<xs:element name="pivoty" type="xs:float" />
<xs:element name="pivotz" type="xs:float" />
<xs:element name="anguloinicial" type="xs:float" />
<xs:element name="rotacionmaxima" type="xs:float" />
<xs:element name="pasorotacion" type="xs:float" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="camara">
<xs:complexType>
<xs:sequence>
<xs:element name="nombre" type="xs:float" />
<xs:element name="distanciacamaraobjetivo" type="xs:float" />
<xs:element name="distanciacamarainfo" type="xs:float" />
<xs:element name="pasorotacion" type="xs:float" />
<xs:element name="anguloxz" type="xs:float" />
<xs:element name="anguloxy" type="xs:float" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>