添加项目文件。
This commit is contained in:
21
MstnAPIAssist/Managed/ElementHelper.h
Normal file
21
MstnAPIAssist/Managed/ElementHelper.h
Normal 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);
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user