Created
February 16, 2019 19:10
-
-
Save StudioLE/c868547aaddc820e99efb4fbaad88159 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import clr | |
| clr.AddReference('ProtoGeometry') | |
| from Autodesk.DesignScript.Geometry import * | |
| #The inputs to this node will be stored as a list in the IN variables. | |
| dataEnteringNode = IN | |
| #Determine if FamilyInstance is Mirrored by Yna_Db | |
| #https://forum.dynamobim.com/t/group-is-mirrored-or-not/14588/33 | |
| OUT = [UnwrapElement(x).Mirrored for x in IN[0]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment