添加项目文件。

This commit is contained in:
GG Z
2026-02-23 14:35:54 +08:00
parent de381a07f6
commit 196af6105f
54 changed files with 5698 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using Autodesk.Revit.DB;
using OfficeOpenXml;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CDM.Interop.Revit.RevitCompoent
{
class RevitOpening : RevitComponent
{
public double Length { get; set; }
public double Width { get; set; }
public XYZ cOrigin => new XYZ(Xl, Yw, Zh);
public XYZ rOrigin => new XYZ(Xl, Yw, Zh) * 1000 / 304.8;
}
}