clutter.BehaviourPath

clutter.BehaviourPath

Synopsis

class clutter.BehaviourPath(clutter.Behaviour):
    __init__(alpha, knots)
def get_knots()
def append_knot(knot)
def append_knots(knots)
def insert_knot(offset, knot)
def remove_knot(offset)
def clear()

Ancestry

+-- GObject
  +-- clutter.Behaviour
    +-- clutter.BehaviourPath

Constructor

    __init__(alpha, knots)

alpha :

a clutter.Alpha

knots :

a tuple of tuples with the X and Y coordinates

Returns :

a clutter.BehaviourPath

Methods

clutter.BehaviourPath.get_knots

    def get_knots()

Returns :

a list

clutter.BehaviourPath.append_knot

    def append_knot(knot)

knot :

a clutter.Knot

clutter.BehaviourPath.append_knots

    def append_knots(knots)

knots :

a tuple of tuples with the X and Y coordinates

clutter.BehaviourPath.insert_knot

    def insert_knot(offset, knot)

offset :

an int

knot :

a clutter.Knot

clutter.BehaviourPath.remove_knot

    def remove_knot(offset)

offset :

an int

clutter.BehaviourPath.clear

    def clear()