Mon Feb 20, 2017 11:52 am
Hi experienced Fusion Users
I need your help to define an well done created composition
It seams the name of the window is FlowView, accessed by the "Flow tab" from FUSION : correct ?
From command line in the Fusion/Console
From Composition script
For example, let's create two cubes and group them. By default they will be created in the left corner, the second goes under. Let's set the position at (20,50) and (100, 50). Then let's group them, and set position at (50,50).
cube3D1 = Cube3D()
cube3D2 = Cube3D()
cube3D1.View.X = 20 -- pseudo code unknown
cube3D1.View.Y = 50 -- pseudo code unknown
cube3D1.View.X = 100 -- pseudo code unknown
cube3D1.View.Y = 50 -- pseudo code unknown
group12 = Group(cube1, cube2) -- pseudo code unknown
group12.View.X = 50 -- pseudo code unknown
group12.View.Y = 50 -- pseudo code unknown
QUESTION 1 : How to set the position of the tool in the FlowView ?
QUESTION 2 : How to set the position of a group in the FlowView ?