几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量

几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量 (http://www.dimcax.com/hust/index.php)
-   DirectDWG (http://www.dimcax.com/hust/forumdisplay.php?f=89)
-   -   【转帖】rotation Angle Of The Arrowhead Block In Leader (http://www.dimcax.com/hust/showthread.php?t=18464)

yang686526 2009-05-07 03:13 PM

【转帖】rotation Angle Of The Arrowhead Block In Leader
 
rotation angle of the arrowhead block in leader
rotation angle of the arrowhead block in leader
as for leader,
we can get the arrowhead block by oddbleader::dimldrblk(),
get the scalefactors of the arrowhead block by oddbleader::dimasz(),
get the insertion point of the arrowhead block by oddbleader::vertexat(0),
but how can we get the rotation angle of the arrowhead block?
or, we should calculate the rotation angle by ourselves?
thank you very much!
hello yeyunxiaopan,
try to use next code:
code:

odgevector3d vec = oddbleader::vertexat(0) - oddbleader::vertexat(0);
double arrowheadrot;
odgevector3d vnormal = oddbleader::normal();
if ( vnormal != odgevector3d::kzaxis )
{
arrowheadrot = odgematrix3d::planetoworld(vnormal).getcsxaxis().angleto(vec, vnormal);
} else
{
arrowheadrot = odgevector3d::kxaxis.angleto(vec, vnormal);
}
best regards,
sergey z.
thanks a lot!
i think that maybe there should be a little modification to the codes as follows
odgevector3d vec = oddbleader::vertexat(0) - oddbleader::vertexat(1);
quote:
originally posted by yeyunxiaopan
thanks a lot!
i think that maybe there should be a little modification to the codes as follows
odgevector3d vec = oddbleader::vertexat(0) - oddbleader::vertexat(1);
yes of course. i am sorry. it is my mistake.-(
best regards,
sergey z.


所有的时间均为北京时间。 现在的时间是 12:04 AM.