mdlElmdscr_intersectShapes


 プロダクト:MicroStation
 バージョン:CE update14
 環境:N/A
 エリア:Programming
 サブエリア:MDL

mdlElmdscr_intersectShapesの引数 1に以下の様に MSElementDescrP inEdP = NULL;を定義して与えます。

DgnModelP activeModel = ACTIVEMODEL->GetDgnModelP();
ElementId eleId01 = 864010;
EditElementHandle eeh01(eleId01, activeModel);
ElementId eleId02 = 864013;
EditElementHandle eeh02(eleId02, activeModel);

MSElementDescrP inEdP = NULL;
MSElementDescrP outEdP = NULL;

int istat=mdlElmdscr_intersectShapes(&inEdP, &outEdP, eeh01.GetElementDescrP(), eeh02.GetElementDescrP(), 10.0);

 Original Author:Mikihiko Tabata