22 lines
565 B
C++
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);
|
|
};
|
|
}
|
|
}
|
|
|
|
|