complexType BSplineSurfaceType
diagram plmxml_diagrams/plmxml_p241.png
namespace http://www.plmxml.org/Schemas/PLMXMLSchema
type extension of plm:SurfaceBase
properties
base plm:SurfaceBase
children plm:Description plm:ApplicationRef plm:Attribute plm:PropertyGroup plm:SamplePoints plm:UKnots plm:VKnots plm:UKnotMultiplicities plm:VKnotMultiplicities plm:Vertices
used by
element BSplineSurface
attributes
Name  Type  Use  Default  Fixed  Annotation
id  xsd:ID  optional      
name  xsd:string  optional      
nameRef  plm:anyURIType  optional      
descriptionTextRef  plm:anyURIType  optional      
attributeRefs  xsd:IDREFS  optional      
entityRef  plm:anyURIType  optional      
propertyRefs  plm:uriReferenceListType  optional      
startU  xsd:double  optional      
endU  xsd:double  optional      
startV  xsd:double  optional      
endV  xsd:double  optional      
dimension  plm:SplineDimensionType    3    
numberOfUVertices  xsd:positiveInteger  required      
numberOfVVertices  xsd:positiveInteger  required      
uDegree  xsd:positiveInteger  required      
vDegree  xsd:positiveInteger  required      
isRational  xsd:boolean  required      
isUPeriodic  xsd:boolean  required      
isVPeriodic  xsd:boolean  required      
isUClosed  xsd:boolean  required      
isVClosed  xsd:boolean  required      
annotation
documentation

      B-Spline surface, normally in 3-dimensional space.
     
      Attributes:
     
      uDegree:       degree of the surface in U.
      vDegree:       degree of the surface in V.
      dimension:     dimension of the surface. This determines the length of each vector
                     in 'Vertices': if isRational is true, it is 'dimension+1', else it
                     is 'dimension'. Defaults to 3.
      isRational:    true if the surface is rational.
      isUPeriodic:   true if the surface is periodic in U.
      isUPeriodic:   true if the surface is periodic in U.
      isVClosed:     true if the surface is closed in V.
      isVClosed:     true if the surface is closed in V.
      numberOfUVertices: number of U vertices.
      numberOfVVertices: number of V vertices.

      Elements:
     
      UKnots:        U knot values, in increasing order, no repetitions.
      VKnots:        V knot values, in increasing order, no repetitions.
      UKnotMultiplicities: multiplicities of the U knots.
      VKnotMultiplicities: multiplicities of the V knots.
      Vertices:      coordinates of the vertices.
     
source <xsd:complexType name="BSplineSurfaceType">
 
<xsd:annotation>
   
<xsd:documentation>
      B-Spline surface, normally in 3-dimensional space.
     
      Attributes:
     
      uDegree:       degree of the surface in U.
      vDegree:       degree of the surface in V.
      dimension:     dimension of the surface. This determines the length of each vector
                     in 'Vertices': if isRational is true, it is 'dimension+1', else it
                     is 'dimension'. Defaults to 3.
      isRational:    true if the surface is rational.
      isUPeriodic:   true if the surface is periodic in U.
      isUPeriodic:   true if the surface is periodic in U.
      isVClosed:     true if the surface is closed in V.
      isVClosed:     true if the surface is closed in V.
      numberOfUVertices: number of U vertices.
      numberOfVVertices: number of V vertices.

      Elements:
     
      UKnots:        U knot values, in increasing order, no repetitions.
      VKnots:        V knot values, in increasing order, no repetitions.
      UKnotMultiplicities: multiplicities of the U knots.
      VKnotMultiplicities: multiplicities of the V knots.
      Vertices:      coordinates of the vertices.
     
</xsd:documentation>
 
</xsd:annotation>
 
<xsd:complexContent>
   
<xsd:extension base="plm:SurfaceBase">
     
<xsd:sequence>
       
<xsd:element name="UKnots" type="plm:DoubleListType"/>
       
<xsd:element name="VKnots" type="plm:DoubleListType"/>
       
<xsd:element name="UKnotMultiplicities" type="plm:IntegerListType"/>
       
<xsd:element name="VKnotMultiplicities" type="plm:IntegerListType"/>
       
<xsd:element name="Vertices" type="plm:DoubleListType"/>
     
</xsd:sequence>
     
<xsd:attribute name="dimension" type="plm:SplineDimensionType" default="3"/>
     
<xsd:attribute name="numberOfUVertices" type="xsd:positiveInteger" use="required"/>
     
<xsd:attribute name="numberOfVVertices" type="xsd:positiveInteger" use="required"/>
     
<xsd:attribute name="uDegree" type="xsd:positiveInteger" use="required"/>
     
<xsd:attribute name="vDegree" type="xsd:positiveInteger" use="required"/>
     
<xsd:attribute name="isRational" type="xsd:boolean" use="required"/>
     
<xsd:attribute name="isUPeriodic" type="xsd:boolean" use="required"/>
     
<xsd:attribute name="isVPeriodic" type="xsd:boolean" use="required"/>
     
<xsd:attribute name="isUClosed" type="xsd:boolean" use="required"/>
     
<xsd:attribute name="isVClosed" type="xsd:boolean" use="required"/>
   
</xsd:extension>
 
</xsd:complexContent>
</xsd:complexType>

attribute BSplineSurfaceType/@dimension
type plm:SplineDimensionType
properties
default 3
facets
Kind Value Annotation
minInclusive 2
maxInclusive 3
source <xsd:attribute name="dimension" type="plm:SplineDimensionType" default="3"/>

attribute BSplineSurfaceType/@numberOfUVertices
type xsd:positiveInteger
properties
use required
source <xsd:attribute name="numberOfUVertices" type="xsd:positiveInteger" use="required"/>

attribute BSplineSurfaceType/@numberOfVVertices
type xsd:positiveInteger
properties
use required
source <xsd:attribute name="numberOfVVertices" type="xsd:positiveInteger" use="required"/>

attribute BSplineSurfaceType/@uDegree
type xsd:positiveInteger
properties
use required
source <xsd:attribute name="uDegree" type="xsd:positiveInteger" use="required"/>

attribute BSplineSurfaceType/@vDegree
type xsd:positiveInteger
properties
use required
source <xsd:attribute name="vDegree" type="xsd:positiveInteger" use="required"/>

attribute BSplineSurfaceType/@isRational
type xsd:boolean
properties
use required
source <xsd:attribute name="isRational" type="xsd:boolean" use="required"/>

attribute BSplineSurfaceType/@isUPeriodic
type xsd:boolean
properties
use required
source <xsd:attribute name="isUPeriodic" type="xsd:boolean" use="required"/>

attribute BSplineSurfaceType/@isVPeriodic
type xsd:boolean
properties
use required
source <xsd:attribute name="isVPeriodic" type="xsd:boolean" use="required"/>

attribute BSplineSurfaceType/@isUClosed
type xsd:boolean
properties
use required
source <xsd:attribute name="isUClosed" type="xsd:boolean" use="required"/>

attribute BSplineSurfaceType/@isVClosed
type xsd:boolean
properties
use required
source <xsd:attribute name="isVClosed" type="xsd:boolean" use="required"/>

element BSplineSurfaceType/UKnots
diagram plmxml_diagrams/plmxml_p242.png
namespace http://www.plmxml.org/Schemas/PLMXMLSchema
type plm:DoubleListType
properties
content simple
source <xsd:element name="UKnots" type="plm:DoubleListType"/>

element BSplineSurfaceType/VKnots
diagram plmxml_diagrams/plmxml_p243.png
namespace http://www.plmxml.org/Schemas/PLMXMLSchema
type plm:DoubleListType
properties
content simple
source <xsd:element name="VKnots" type="plm:DoubleListType"/>

element BSplineSurfaceType/UKnotMultiplicities
diagram plmxml_diagrams/plmxml_p244.png
namespace http://www.plmxml.org/Schemas/PLMXMLSchema
type plm:IntegerListType
properties
content simple
source <xsd:element name="UKnotMultiplicities" type="plm:IntegerListType"/>

element BSplineSurfaceType/VKnotMultiplicities
diagram plmxml_diagrams/plmxml_p245.png
namespace http://www.plmxml.org/Schemas/PLMXMLSchema
type plm:IntegerListType
properties
content simple
source <xsd:element name="VKnotMultiplicities" type="plm:IntegerListType"/>

element BSplineSurfaceType/Vertices
diagram plmxml_diagrams/plmxml_p246.png
namespace http://www.plmxml.org/Schemas/PLMXMLSchema
type plm:DoubleListType
properties
content simple
source <xsd:element name="Vertices" type="plm:DoubleListType"/>


XML Schema documentation generated by XMLSpy Schema Editor http://www.altova.com/xmlspy