添加项目文件。

This commit is contained in:
GG Z
2026-02-28 21:01:57 +08:00
parent 9fe4e5a9aa
commit 7a229067cc
175 changed files with 18060 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#pragma once
#include "../Native/CElementHelper.h"
using namespace System;
namespace GeomNet = Bentley::GeometryNET;
namespace BRDI
{
namespace MstnAPI {
ref class ElementHelper
{
public:
void CreateLineElement(GeomNet::DPoint3d startPoint, GeomNet::DPoint3d endPoint);
void CreateLineStringElement(array<GeomNet::DPoint3d>^ points);
void CreateCurveElement(GeomNet::CurveVector^ curveVector);
void BodyFromLoft(array<GeomNet::CurveVector^>^ profiles, DgnPlatformNET::DgnModelRef^ dgnModelRef);
void ShowMessage(String^ message);
};
}
}