txMoveFigSet
txMoveFigSet(
T_figSet
l_transform
)
=> t / nil
Description
Moves each figure in the given FigSet using the specified transform.
Arguments
Value Returned
Examples
Transforms the figures in the FigSet fs0 by the transformation value of R90.
fs0 = txCreateFigSet(cv "fs0")
> tx@0x254996a0
txAppendObjectToFigSet(fs0 dbCreateRect(cv '(0 "drawing") '((0 0) (200 100))))
> t
txMoveFigSet(fs0 '(((0 0) "R90")))
> t
txGetFigSetData(fs0 0)~>bBox
> ((-100.0 0.0)
> (0.0 200.0)
> )
Related Topics
Return to top