Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have an element that I want to move to a new position and rotate to a specified rotation.
Can this be done without first needing to calculate the difference in position and rotation? Now if I use ElementTransformUtils.MoveElement I just move the element relative to current position. I want to just specify the rotation and the position in absolute values.
I would like for it to be as simple as this mock code
myElement.Position= new XYZ(1000, 200, 0);
myElement.Rotation = 15; // degrees or whatever...
Are there any utilities that I'm not aware of that makes this easier?
Thanks!
Solved! Go to Solution.