-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
debugging documentation build: add other geometry types again
- Loading branch information
Showing
1 changed file
with
55 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7607,6 +7607,25 @@ [email protected] | |
</xsd:complexContent> | ||
</xsd:complexType> | ||
|
||
<xsd:complexType name="coneType"> | ||
<xsd:complexContent> | ||
<xsd:extension base="complexBaseType"> | ||
<xsd:all> | ||
<xsd:element name="radius" minOccurs="0" default="1" type="doubleBaseType"> | ||
<xsd:annotation> | ||
<xsd:documentation>Radius (default=1) [m]</xsd:documentation> | ||
</xsd:annotation> | ||
</xsd:element> | ||
<xsd:element name="height" minOccurs="0" default="0.9549297" type="doubleBaseType"> | ||
<xsd:annotation> | ||
<xsd:documentation>Height (default=0.9549297) [m]</xsd:documentation> | ||
</xsd:annotation> | ||
</xsd:element> | ||
</xsd:all> | ||
</xsd:extension> | ||
</xsd:complexContent> | ||
</xsd:complexType> | ||
|
||
<xsd:complexType name="configurationDefinitionsType"> | ||
<xsd:annotation> | ||
<xsd:appinfo> | ||
|
@@ -11230,6 +11249,25 @@ [email protected] | |
</xsd:complexContent> | ||
</xsd:complexType> | ||
|
||
<xsd:complexType name="cylinderType"> | ||
<xsd:complexContent> | ||
<xsd:extension base="complexBaseType"> | ||
<xsd:all> | ||
<xsd:element name="radius" minOccurs="0" default="1" type="doubleBaseType"> | ||
<xsd:annotation> | ||
<xsd:documentation>Radius (default=1) [m]</xsd:documentation> | ||
</xsd:annotation> | ||
</xsd:element> | ||
<xsd:element name="height" minOccurs="0" default="0.31831" type="doubleBaseType"> | ||
<xsd:annotation> | ||
<xsd:documentation>Height (default=1/pi) [m]</xsd:documentation> | ||
</xsd:annotation> | ||
</xsd:element> | ||
</xsd:all> | ||
</xsd:extension> | ||
</xsd:complexContent> | ||
</xsd:complexType> | ||
|
||
<xsd:complexType name="dampingDerivativesRatesArrayType"> | ||
<xsd:annotation> | ||
<xsd:appinfo> | ||
|
@@ -18081,9 +18119,9 @@ The fuel tank volume type should also be used for the wing fuel tank</xsd:docume | |
<xsd:extension base="complexBaseType"> | ||
<xsd:choice> | ||
<xsd:element name="cuboid" type="cuboidType"/> | ||
<xsd:element name="cone" type="xsd:string"/> | ||
<xsd:element name="sphere" type="xsd:string"/> | ||
<xsd:element name="cylinder" type="xsd:string"/> | ||
<xsd:element name="cone" type="coneType"/> | ||
<xsd:element name="sphere" type="sphereType"/> | ||
<xsd:element name="cylinder" type="cylinderType"/> | ||
<xsd:element name="genericGeometryComponent" type="genericGeometryComponentType"/> | ||
</xsd:choice> | ||
</xsd:extension> | ||
|
@@ -33879,6 +33917,20 @@ The fuel tank volume type should also be used for the wing fuel tank</xsd:docume | |
</xsd:simpleContent> | ||
</xsd:complexType> | ||
|
||
<xsd:complexType name="sphereType"> | ||
<xsd:complexContent> | ||
<xsd:extension base="complexBaseType"> | ||
<xsd:all> | ||
<xsd:element name="radius" minOccurs="0" default="0.62035" type="doubleBaseType"> | ||
<xsd:annotation> | ||
<xsd:documentation>Radius (default=0.62035) [m]</xsd:documentation> | ||
</xsd:annotation> | ||
</xsd:element> | ||
</xsd:all> | ||
</xsd:extension> | ||
</xsd:complexContent> | ||
</xsd:complexType> | ||
|
||
<xsd:complexType name="spoilersType"> | ||
<xsd:annotation> | ||
<xsd:appinfo> | ||
|