明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1549|回复: 2

[求助]CAD R旋转方法是怎么做的 在线等

[复制链接]
发表于 2010-6-4 11:06:00 | 显示全部楼层 |阅读模式

CAD R旋转方法是怎么做的,编程怎么编呀`~~高手帮下忙~~~我是新人~~

谢谢

在线等     Rotate都有哪些方法呀~

发表于 2010-6-4 13:39:00 | 显示全部楼层
  1.         /// <summary>
  2.         /// 旋转的函数.
  3.         /// </summary>
  4.         /// <param name="ent"></param>
  5.         /// <param name="basePt"></param>
  6.         /// <param name="angle"></param>
  7.         public static void Rotate(Entity ent, Point3d basePt, Double angle)
  8.         {
  9.             if (angle != 0)
  10.             {
  11.                 Matrix3d mt = Matrix3d.Rotation(angle, Vector3d.ZAxis, basePt);
  12.                 ent.TransformBy(mt);
  13.             }
  14.         }
复制代码
  1.         /// <summary>
  2.         /// 旋转的函数.
  3.         /// </summary>
  4.         /// <param name="id"></param>
  5.         /// <param name="basePt"></param>
  6.         /// <param name="angle"></param>
  7.         public static void Rotate(ObjectId id, Point3d basePt, Double angle)
  8.         {
  9.             Matrix3d mt = Matrix3d.Rotation(angle, Vector3d.ZAxis, basePt);
  10.             Database db = HostApplicationServices.WorkingDatabase;
  11.             using (Transaction trans = db.TransactionManager.StartTransaction())
  12.             {
  13.                 Entity ent = (Entity)trans.GetObject(id, OpenMode.ForWrite);
  14.                 ent.TransformBy(mt);
  15.                 trans.Commit();
  16.             }
  17.         }
发表于 2010-11-9 12:31:00 | 显示全部楼层

先收藏后来慢慢学习..

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-26 00:28 , Processed in 0.185274 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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