找回密码
 立即注册

QQ登录

只需一步,快速开始

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

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

[复制链接]

0

主题

0

回帖

28

积分

管理员

积分
28
发表于 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. }
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-12-29 04:47 , Processed in 0.146380 second(s), 22 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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