ODFPY  1.2.0
 All Classes Namespaces Files Functions Variables
anim.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2006-2007 Søren Roug, European Environment Agency
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 #
18 # Contributor(s):
19 #
20 
21 from namespaces import ANIMNS
22 from element import Element
23 
24 
25 # Autogenerated
26 def Animate(**args):
27  return Element(qname = (ANIMNS,'animate'), **args)
28 
29 def Animatecolor(**args):
30  return Element(qname = (ANIMNS,'animateColor'), **args)
31 
32 def Animatemotion(**args):
33  return Element(qname = (ANIMNS,'animateMotion'), **args)
34 
35 def Animatetransform(**args):
36  return Element(qname = (ANIMNS,'animateTransform'), **args)
37 
38 def Audio(**args):
39  return Element(qname = (ANIMNS,'audio'), **args)
40 
41 def Command(**args):
42  return Element(qname = (ANIMNS,'command'), **args)
43 
44 def Iterate(**args):
45  return Element(qname = (ANIMNS,'iterate'), **args)
46 
47 def Par(**args):
48  return Element(qname = (ANIMNS,'par'), **args)
49 
50 def Param(**args):
51  return Element(qname = (ANIMNS,'param'), **args)
52 
53 def Seq(**args):
54  return Element(qname = (ANIMNS,'seq'), **args)
55 
56 def Set(**args):
57  return Element(qname = (ANIMNS,'set'), **args)
58 
59 def Transitionfilter(**args):
60  return Element(qname = (ANIMNS,'transitionFilter'), **args)
61 
def Audio
Definition: anim.py:38
def Animatemotion
Definition: anim.py:32
def Set
Definition: anim.py:56
def Animatetransform
Definition: anim.py:35
def Seq
Definition: anim.py:53
def Animate
Definition: anim.py:26
def Transitionfilter
Definition: anim.py:59
def Command
Definition: anim.py:41
def Param
Definition: anim.py:50
def Animatecolor
Definition: anim.py:29
def Par
Definition: anim.py:47
def Iterate
Definition: anim.py:44