Hello,
I seem to be running into issues regarding the built in functions of the IADCurve interface. According to the API Help, the Tangent method of the IADCurve interface returns IADVector, but trying to access the properties of that object throws back an error.
Anyone know of a solution?
I seem to be running into issues regarding the built in functions of the IADCurve interface. According to the API Help, the Tangent method of the IADCurve interface returns IADVector, but trying to access the properties of that object throws back an error.
Python:
x = design_session.Bodies.Item(0).Edges.Item(l).Geometry.Tangent.X #getting x from IADVector Properties
print(x)
AttributeError: 'builtin_function_or_method' object has no attribute 'X'
Anyone know of a solution?