Files
MsAddIns/MstnAPIAssist/Managed/ElementHelper.h
2026-02-28 21:01:57 +08:00

22 lines
565 B
C++

#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);
};
}
}