Where can I get which parameter and type a method needs in Python?
In API Docs I just got the name of the method without parameter or an example
Thank you!
It’s wanting a Revit point, so use the XYZ() wrapper.
XYZ(pt1.X,pt1.Y,pt1.Z)
clr.AddReference("RevitAPI")
import Autodesk
from Autodesk.Revit.DB import *
Hi,
you need to use Geometry conversion (between Revit API and Dynamo API)
read this