Move


Moves and scales an object. Can be connected to four analog signals that moves the object in
x and y direction, and scales it in x and y direction.

The movement is done from the position the object is given in the editor. The calculation from
the values of the signals in XAttribute and YAttribute to Ge coordinates, are influenced by
XOffset, YOffset and Factor. XOffset and YOffset are the values that corresponds to the
starting point in x and y direction. Factor specifies the conversion from XAttribute and
YAttribute values to Ge coordinates, according to the formula:

dx = (XAttribute - XOffset) * Factor

dy = (YAttribute - YOffset) * Factor

The scaling in x and y direction is done from the values of the signals in ScaleXAttribute
and ScaleYAttribute. These are multiplied by ScaleFactor and gives the scale factor, where
1.0 implies no scaling, values greater than 1 gives enlargement, and values less then 1 gives
reduced scale.

Attribute                              Description
Move.XAttribute                         Signal in the database of type Float32. Gives movement in
                        x direction.
Move.YAttribute                         Signal in the database or type Float32. Gives movement in
                        y direction.
Move.XFactor                         Conversion factor for XAttribute.
Move.YFactor                         Conversion factor for YAttribute.
Move.XOffset                         Value for XAttribute that corresponds to the start
                        position for the object.
Move.YOffset                         Value for YAttribute that corresponds to the start
                        position for the object.
Move.ScaleXAttribute                       Signal in the datbase of type Float32. Gives scaling in
                        x direction.
Move.ScaleYAttribute                       Signal in the database of type Float32. Gives scaling in
                        y direction.
Move.ScaleXFactor                       Conversion factor for ScaleXAttribute.
Move.ScaleYFactor                       Conversion factor for ScaleYAttribute.
Move.ScaleType                         Type of scale. From where the scale emanates, the center or
                        on of the corners.