There are
some discussions on mirrored elements in Revit. Revit doesn’t show them natively.
Furthermore In the real world mirrored doesn’t exist. But your digital BIM isn’t
the real world. So are we doubling are efforts and time to actually model every
mirrored element again but mirrored. Or are we using the hidden treasures.
And of
course safety first. Write a date to your project information. So everybody
would know if mirrored is being checked.
The core of this script is little Python:
lstIN = UnwrapElement(IN[0])
lstOUT = list()
for item in lstIN:
try:
lstOUT.append(item.Mirrored)
except:
lstOUT.append(None)
OUT = lstOUT
Stil we would love a real time solution from Autodesk itself. Or a real time Addin.
Perhaps more news later. keep an eye on #PropertyWizard.
You can download with this link
Have fun, but use at your own risk.