dbConcatTransform
dbConcatTransform(l_transform1 l_transform2) =>l_transform_new
Description
Merges two individual transformations into a single new transformation.
Arguments
Value Returned
|
The new transformation resulting from the merged transformations. |
Examples
dbConcatTransform(list(0:0 "R90") list(1.5:2.5 "R90"))
=> ((1.500000 2.500000) "R180" 1.000000)
In the following example, figure F is moved to the same position and orientation as the two successive calls to dbMoveFig.
(dbMoveFig F cv (dbConcatTransform T1 T2))
The figures are moved in the following order:(dbMoveFig F cv T1)
(dbMoveFig F cv T2)
Related Topics
Shape Transformation Functions
Return to top