Table of contents
No headings in the article.
Assume you were instructed to rotate columns . How will you get this task done within the shortest time possible?
The traditional practice
You will do the following probably:
Delete all the columns
Rotate one column
Replace all the deleted columns with the new rotated column
There are more cons than pros in the above process, what happens when you want to rotate all the columns to a new angle? Will you redo the process as mentioned above?
The automation way
Fire up your dynamo
select the " Select Model Elements" node; This will select all the columns in Revit.
Select the "Code Block" node; This will assist in specifying the degree parameter. The node is ideally available by double-clicking the scripting environment.
Select the "Familyinstance.SetRotation" node; This will help us rotate each individual column selected to the specified degree
Run the script
Before
After