Skip to content

Instantly share code, notes, and snippets.

@StudioLE
Created February 16, 2019 19:10
Show Gist options
  • Select an option

  • Save StudioLE/c868547aaddc820e99efb4fbaad88159 to your computer and use it in GitHub Desktop.

Select an option

Save StudioLE/c868547aaddc820e99efb4fbaad88159 to your computer and use it in GitHub Desktop.
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