天气与日历 切换到窄版

 找回密码
 立即注册
中国膜结构网
十大进口膜材评选 十大国产膜材评选 十大膜结构设计评选 十大膜结构公司评选
查看: 139|回复: 0

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

[复制链接]
  • TA的每日心情
    开心
    昨天 06:36
  • 签到天数: 15 天

    [LV.4]偶尔看看III

    105

    主题

    11

    回帖

    1308

    积分

    管理员

    积分
    1308
    QQ
    发表于 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. }
    复制代码

     

     

     

     

    [每日一码] 系统变量viewtwist值如何通过数学方法计算
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|Archiver|中国膜结构网|中国膜结构协会|进口膜材|国产膜材|ETFE|PVDF|PTFE|设计|施工|安装|车棚|看台|污水池|中国膜结构网_中国空间膜结构协会

    GMT+8, 2024-11-1 13:27 , Processed in 0.159913 second(s), 28 queries .

    Powered by Discuz! X3.5

    © 2001-2024 Discuz! Team.

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