Vizard 7 » Reference » Linking » Operators on links
7.6

Operators on links

Link operators allow you to insert matrix operations in the source to the destination matrix computation in order to offset the position, orientation, or scale of the destination object. For example, you may want to keep a node positioned in front of the view rather than directly on the view.  Operators are implemented as position, orientation, or scale matrices that are multiplied with the source object's transform every frame.  

Pre and Post Operations

Because operators work by performing matrix multiplication, the order in which the operator matrices are multiplied affects the outcome.

 

The difference between pre and post operations:

#Keep a logo in front of the view
maleLink = viz.link(viz.MainView, logo)

#The preTrans operator moves the logo in the view's local coordinate system
maleLink.preTrans([0, 0, 3])

The pre operations are inserted to the left of source matrix in the link computation, while post operations are to the right.  If matrix A is a pre operator, then it will multiply the source matrix, S, in this order: A * S.  If A is a post operator, the multiplication order is reversed: S * A.  The '*' character indicates matrix multiplication, not the dot product.

 

The formula for computing the destination matrix:

 

Destination = PreOps * Source * PostOps

Combining Operations

When adding multiple operators to a link, order matters.  Pre operators are always added to the beginning of the computation, before previous pre operations.  Post operators are appended to the link computation.  The basicLinking.py provides an example using pre operations to move the viewpoint over an avatar's shoulder.  

#Move camera over male's shoulder
viewLink = viz.link(male, viz.MainView)
#Rotate camera down 40 degrees
E1 = viewLink.preEuler([0, 45, 0])
#Translate camera back 5 meters in the current local coordinates, that's back 2.5
# and up 2.5 in world coordinates
T1 = viewLink.preTrans([0, 0, -5])
#Rotate camera up 20 degrees to look forward
E2 = viewLink.preEuler([0, -20, 0])

The link computation for this example is: ViewTrans = E2*T1*E1*Source.  Notice that the operators change the reference frame the of the previous operators.  The reference frame of an operator/matrix is defined by the operator/matrix to the right.  

Operating on Position and Orientation Separately

When computing the destination object's transform matrix, the link algorithm first gets the position and orientation matrices of the source, then it multiplies these together to produce a full position and orientation matrix. If you would like to apply an operation on the source's orientation or position matrix before they are combined in the full matrix, you can set the "target" parameter.  As the third parameter in the pre and post methods, the target parameter can take viz.LINK_FULL_OP (default), viz.LINK_POS_OP, and viz.LINK_ORI_OP as possible arguments.

 

As an example, if we apply <link>.postEuler(0, 0, 90, viz.LINK_ORI_OP) then the destination matrix is rolled 90 degrees.  Not only does this change orientation, but it also changes the position if the destination matrix has any translation.  If we had called <link>.postEuler(0, 0, 90, viz.LINK_FULL_OP) then the matrix would simply roll the destination node 90 degrees without changing its position.  

#Trying out the target parameter
linky = viz.link(logo1, logo2)

#Try with viz.LINK_FULL_OP and viz.LINK_ORI_OP
linky.postEuler([0, 0, 90], viz.LINK_ORI_OP)
linky.postTrans([1, 0, 0])

Operator Objects

The pre and post methods of links return operator objects.  You can use these objects to modify links after they have been created with the pre and post methods.

#Modifying an operator after it is created

linky.preEuler(0, 0, 90, viz.LINK_ORI_OP)
offsetOp = linky.postTrans([1, 0, 0])
...
#Some time later change the position offset
offsetOp.setPosition([0, 1, 0])

The Big Picture

The following diagram illustrates the flow of data from the source object to the destination object

See also

In this section:

Linking Basics- Introduction to linking.

Advanced Linking - Discusses the implementation of links with matrix mathematics.

Link Command Table- List of relevant link commands.

Other sections:

Transform Basics- Introduces the position/orientation/scale matrix associated with all 3D nodes.

Example scripts:

Basic linking

Grabbing

Link merging