找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz
查看: 150|回复: 0

[每日一码] 系统变量viewtwist值如何通过数学方法计算

[复制链接]

0

主题

0

回帖

28

积分

管理员

积分
28
发表于 2024-3-14 19:29:54 | 显示全部楼层 |阅读模式
系统变量viewtwist 表示的是WCS下相对于观察方向的up向量和DCS下实际的视口UP向量之间的夹角。

下面代码使用view 方向,构建一个UP 向量(垂直于观察方向),然后计算出实际视口的UP向量,然后测量出他们之间的夹角。
  1. #define PI  3.14159265359
  2. // utility to calculate the viewtwist to illustrate how this works
  3. //
  4. void getViewTwist()
  5. {
  6.     // 首先获得view方向
  7.     struct resbuf viewRb;
  8.     acedGetVar( "VIEWDIR", &viewRb );
  9.     AcGeVector3d dirVector = asVec3d(viewRb.resval.rpoint);
  10.     // 确保在WCS下
  11.     acdbUcs2Wcs( asDblArray( dirVector), asDblArray( dirVector), Adesk::kTrue );
  12.     //计算这个VIEW方向向量的缺省的  upVector
  13.     AcGeVector3d sideVector = dirVector.perpVector();
  14.     AcGeVector3d upVector = dirVector.crossProduct(sideVector).normal();
  15.     ads采用point UpVec;
  16.     asVec3d( UpVec) = upVector;
  17.     // 计算实际的 upVector, by applying the view transformation.
  18.     struct resbuf from, to;
  19.     from.restype = RTSHORT;
  20.     from.resval.rint = 0;    // WCS
  21.     to.restype = RTSHORT;
  22.     to.resval.rint = 2;   // MS DCS
  23.     acedTrans(UpVec, &from, &to, TRUE, UpVec);
  24.     // 计算 twist angle
  25.     double safeViewTwist;
  26.     safeViewTwist = atan2(UpVec[Y],UpVec[X]) - PI/2 ;
  27.     // 在数学上,我们已经完成了计算,有个问题是系统吧变量VIEWTWIST的值在0到2PI之间,所以我们继续
  28.     //如果计算结果为负数
  29.     if( safeViewTwist < -1e-6 )
  30.         safeViewTwist+= (PI * 2.0 );
  31.     acutPrintf("\nsafeViewTwist: %f", safeViewTwist);
  32.     // 下面来检查下计算结果和系统变量VIEWTWIST值进行比较是否一样。
  33.     struct resbuf viewTwist;
  34.     acedGetVar("VIEWTWIST", &viewTwist );
  35.     acutPrintf("\nReal VIEWTWIST: %f", viewTwist.resval.rreal );
  36. }
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|膜结构网

GMT+8, 2024-12-29 05:25 , Processed in 0.137993 second(s), 21 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表