添加项目文件。

This commit is contained in:
GG Z
2026-02-23 16:57:09 +08:00
parent 63b7094528
commit ebf06999d0
109 changed files with 7194 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using Autodesk.Revit.DB;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DotNet.Exchange.Revit.Export
{
public sealed class TriangleFaceNode
{
internal TriangleFaceNode(int v1, int v2, int v3)
{
this.V1 = (int)v1;
this.V2 = (int)v2;
this.V3 = (int)v3;
}
public int V1 { get; private set; }
public int V2 { get; private set; }
public int V3 { get; private set; }
}
}