Prevent label mirroring in module
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2023-01-24
12:32 PM
- last edited on
2023-05-16
11:45 PM
by
Gordana Radonic
Does anyone know a fix for the following?
I made a label that attaches to a Revit (.RVT) module file that makes a opening line for the door, it retrieves its width from the door width which is embedded in the revit properties. However, when I mirror the module, the label also rotates, does anyone know how to previt this?
The module on the right side, is the correct one
Kind regards,
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2023-01-24 01:48 PM - edited 2023-01-24 01:49 PM
I fixed it, adding this will make it work:
IF SYMB_MIRRORED THEN
MUL2 -1,1
ROT2 180
ENDIF
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2023-01-24 01:48 PM - edited 2023-01-24 01:49 PM
I fixed it, adding this will make it work:
IF SYMB_MIRRORED THEN
MUL2 -1,1
ROT2 180
ENDIF