Files
MsAddIns/MstnAPIAssist/Native/CElementHelper.h

14 lines
407 B
C
Raw Normal View History

2026-02-28 21:01:57 +08:00
#pragma once
#include <Mstn/MdlApi/MdlApi.h>
class CElementHelper
{
public:
void CreateLineElement(DPoint3dCP pStartPoint, DPoint3dCP pEndPoint);
void CreateLineStringElement(DPoint3dCP pPoints, int pointCount);
void CreateCurveElement(CurveVectorCP pCurveVector);
void BodyFromLoft(CurveVectorPtr* pCurveVectorPtr, int profileCount, DgnModelRefP pDgnModelRef);
void ShowMessage(WCharCP message);
};