天气与日历 切换到窄版

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

[每日一码] 不通过事件获得鼠标光标的坐标

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

    [LV.4]偶尔看看III

    105

    主题

    11

    回帖

    1308

    积分

    管理员

    积分
    1308
    QQ
    发表于 2024-3-14 19:33:26 | 显示全部楼层 |阅读模式
    AutoCAD API 提供了 AcEdInputPointManager。输入点监视器(Inputpointmonitor )能够监视用户的任何输入,包括鼠标。API还能够监视WINDOWS的消息,有时你需要不通过事件来获取鼠标的位置,下面代码是一个示例,获得当前鼠标光标的位置并转换到AutoCAD的坐标系(考虑了UCS).
    1. static void getMousePosition(void)
    2. {   
    3.     //get cursor position by Windows API
    4.      POINT CursorPos;
    5.      GetCursorPos(&CursorPos);
    6.      acedGetAcadDwgView()->ScreenToClient(&CursorPos);
    7.      //Returns the viewport number based on
    8.      // Windows client coordinates.
    9.      int vpNum = acedGetWinNum(CursorPos.x, CursorPos.y);
    10.      //Converts coordinates from AutoCAD
    11.      // drawing window
    12.      //to current active viewport's coordinates
    13.      acedDwgPoint acPt, newPt;
    14.      acedCoordFromPixelToWorld(vpNum,
    15.                                CursorPos,
    16.                                acPt);
    17.      double worldPoint[3];
    18.      acedCoordFromPixelToWorld(vpNum,
    19.                                 CPoint(CursorPos.x,
    20.                                 CursorPos.y) ,
    21.                                 worldPoint);
    22.      acutPrintf(
    23.          L"\nModel Position (no UCS): [%f, %f, %f]\n",
    24.                     worldPoint[0],
    25.                     worldPoint[1],
    26.                     worldPoint[2]);
    27.      //Take UCS translation in consideration   
    28.      AcGeMatrix3d mat;
    29.      acedGetCurrentUCS(mat);
    30.      AcGePoint3d ptUcs(worldPoint[0],
    31.                      worldPoint[1],
    32.                      worldPoint[2]);
    33.      ptUcs.transformBy(mat.inverse());
    34.      resbuf wcs;
    35.      wcs.restype = RTSHORT;
    36.      wcs.resval.rint = 0;
    37.      resbuf dcs;
    38.      dcs.restype = RTSHORT;
    39.      dcs.resval.rint = 2;
    40.      //translate the WCS coordinate to UCS
    41.      double result[3];
    42.      acedTrans(asDblArray(ptUcs),
    43.                 &wcs,
    44.                 &dcs,
    45.                 0,
    46.                 result);
    47.      acutPrintf(
    48.        L"\nModel Position (with UCS): [%f, %f, %f]\n",
    49.          result[0], result[1], result[2]);
    50. }
    复制代码

     

     

     

     

    [每日一码] 不通过事件获得鼠标光标的坐标
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

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

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

    Powered by Discuz! X3.5

    © 2001-2024 Discuz! Team.

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