14 lines
407 B
C
14 lines
407 B
C
|
|
#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);
|
||
|
|
};
|
||
|
|
|