reg:circleType

Circle shape: center and radius

Complex Type Information

Model

Attributes

QName Type Fixed Default Use Inheritable Annotation
fill_factor restriction of xs:double 1.0 optional
The fill_factor (value between 0 and 1) indicates the fraction of the region that is actually included; possible application: large scale resource coverage areas
note xs:string optional
unit crd:posUnitType deg optional

Used By

Complex Type reg:ellipseType
Element reg:Circle

Source

<xs:complexType name="circleType">
  <xs:annotation>
    <xs:documentation>Circle shape: center and radius</xs:documentation>
  </xs:annotation>
  <xs:complexContent>
    <xs:extension base="reg:shapeType">
      <xs:sequence>
        <xs:element name="Center" type="crd:double2Type">
          <xs:annotation>
            <xs:documentation>The coordinates of the circle's center</xs:documentation>
          </xs:annotation>
        </xs:element>
        <xs:element name="Radius" type="xs:double">
          <xs:annotation>
            <xs:documentation>The radius of the circle</xs:documentation>
          </xs:annotation>
        </xs:element>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>