svg:feTurbulenceType

Complex Type Information

Model

Children: svg:animate, svg:set

Attributes

QName Type Fixed Default Use Inheritable Annotation
base optional
baseFrequency string optional
height svg:LengthType optional
id ID optional
numOctaves integer optional
result string optional
seed double optional
stitchTiles restriction of string noStitch optional
type restriction of string turbulence optional
width svg:LengthType optional
x svg:CoordinateType optional
y svg:CoordinateType optional

Used By

Source

<complexType name="feTurbulenceType">
  <choice minOccurs="0" maxOccurs="unbounded">
    <element ref="svg:animate"/>
    <element ref="svg:set"/>
  </choice>
  <attributeGroup ref="svg:stdAttrs"/>
  <attributeGroup ref="svg:filter_primitive_attributes"/>
  <attribute name="baseFrequency" type="string" use="optional"/>
  <attribute name="numOctaves" type="integer" use="optional"/>
  <attribute name="seed" type="double" use="optional"/>
  <attribute name="stitchTiles" default="noStitch">
    <simpleType>
      <restriction base="string">
        <enumeration value="stitch"/>
        <enumeration value="noStitch"/>
      </restriction>
    </simpleType>
  </attribute>
  <attribute name="type" default="turbulence">
    <simpleType>
      <restriction base="string">
        <enumeration value="fractalNoise"/>
        <enumeration value="turbulence"/>
      </restriction>
    </simpleType>
  </attribute>
</complexType>