Autodesk.Revit.DB.STLExportOptions是一种STL文件导出选项对象,可用于Revit API中的STL文件导出操作。STL(Stereolithography)是一种广泛使用的三维打印文件格式,常被用于将三维图形导入到各种三维打印设备中。
Autodesk.Revit.DB.STLExportOptions对象具有以下属性:
Autodesk.Revit.DB.STLExportOptions对象具有以下方法:
// create an STL export options object.
STLExportOptions options = new STLExportOptions();
// set the binary format to false (ASCII format).
options.BinaryFormat = false;
// export the selected elements as STL file using the created options.
doc.Export("C:\\path\\to\\myFile.stl", options);