高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】odgecurve3displanar
odgecurve3d::isplanar
odgecurve3d::isplanar
i try to use odgecurve3d::isplanar function using this code :
odgecurve3d curve;
odgeplane plane;
bool isplanar;
isplanar=curve.isplanar(plane);
but i obtain only an undefined error message at link time :
error lnk2001: unresolved external symbol "public: bool __thiscall odgecurve3d::isplanar(class odgeplane &,class odgetol const &)const " (?isplanar@odgecurve3d@@qbe_naavodgeplane@@abvodge tol@@@z
i have used both static and dinamic libraries but the function
seems not exist.
there is others libraries not included in the dwgdirect toolkit or
i miss some #define or include file ?
i use microsoft visual c++ 6.0 on windows 2000/xp .
thank you for the answer.
some of the not-implemented methods in the odge library have only declarations, but not definitions.
most probably this is one of them...
regards
chudomir
odgecurve3d class can't be instantiated. you can instantiate only its inheritors like odgeline3d, odgecircarc3d etc.
sergey slezkin
|