找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 1281|回复: 0

[分享] Using OSnap functionality during a Jig in .Net

[复制链接]

已领礼包: 593个

财富等级: 财运亨通

发表于 2013-5-27 21:15:08 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
Using OSnap functionality during a Jig in .Net                                                        By Philippe Leefsma
  Q:
  I would like to take advantage of my OSNAP settings while jigging my entity, so it looks like it sticks to the closest snapped point while user is still moving the cursor.
  I was trying to use some of the Editor selection methods, but it doesn't seem to work.
  
  A:
  The Editor functionalities such as selections cannot be performed while the jig is running.
  A solution to implement this requirement is to set the osnap options before starting the jig, to “End Point” for example. That can be done programmatically as well using the OSMODE system variable. Then inside your jig use a PointMonitor to get the snapped point.
  Here is an example of my Jig class that illustrates that. A full sample is available as attachment:
  1. class CoSnapJig : EntityJig
  2. {
  3.     private Point3d _previousPos;
  4.     private Point3d _position;
  5.     private Editor _ed;
  6.     public CoSnapJig(): base(new DBText())
  7.     {
  8.         _ed = Application.DocumentManager.MdiActiveDocument.Editor;
  9.         DBText dbTxt = (DBText)Entity;
  10.         dbTxt.TextString = "Jigged DBText";
  11.         _ed.PointMonitor +=
  12.             new PointMonitorEventHandler(ed_PointMonitor);
  13.     }
  14.     void ed_PointMonitor(object sender, PointMonitorEventArgs e)
  15.     {
  16.         _position = e.Context.ComputedPoint;
  17.     }
  18.     public new Entity Entity
  19.     {
  20.         get
  21.         {
  22.             return base.Entity;
  23.         }
  24.     }
  25.     protected override SamplerStatus Sampler(JigPrompts prompts)
  26.     {
  27.         JigPromptPointOptions options =
  28.             new JigPromptPointOptions("\nSpecify position: ");
  29.         options.UserInputControls = UserInputControls.NoZeroResponseAccepted;
  30.         options.Cursor = CursorType.Crosshair;
  31.         PromptPointResult promptRes = prompts.AcquirePoint(options);
  32.         if (_previousPos == promptRes.Value)
  33.             return SamplerStatus.NoChange;
  34.         _previousPos = promptRes.Value;
  35.         return SamplerStatus.OK;
  36.     }
  37.     protected override bool Update()
  38.     {
  39.         DBText oTxt = (DBText)Entity;
  40.         oTxt.Position = _position;
  41.         return true;
  42.     }
  43.     public PromptStatus Run()
  44.     {
  45.         PromptResult promptResult =
  46.             Application.DocumentManager.MdiActiveDocument.Editor.Drag(this);
  47.         return promptResult.Status;
  48.     }
  49. }
osnapjig.zip

论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|申请友链|Archiver|手机版|小黑屋|辽公网安备|晓东CAD家园 ( 辽ICP备15016793号 )

GMT+8, 2024-11-17 22:48 , Processed in 0.170264 second(s), 31 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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