明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 985|回复: 0

[基础] 标注生成时有时文字位置会与正常的位置相反..

[复制链接]
发表于 2018-5-31 14:55:09 | 显示全部楼层 |阅读模式

自动生成标注  为什么会突然的出现文字位置相反的情况....请问怎么解决

  1. public static AlignedDimension CreatLineDimension(Line line, LinePosition pos, int level)
  2.         {
  3.             double dimTextHeight = HostApplicationServices.WorkingDatabase.Dimtxt;
  4.             double dimTextFloat = HostApplicationServices.WorkingDatabase.Dimgap;
  5.             Vector3d vt = new Vector3d();
  6.             switch (pos){
  7.                 case LinePosition.hTop:
  8.                     vt = new Vector3d(0, ((3 * dimTextFloat) + (dimTextHeight + 2 * dimTextFloat) * (level - 1)), 0);break;
  9.                 case LinePosition.hBot:
  10.                     vt = new Vector3d(0, -(2 * dimTextFloat + dimTextHeight) * level, 0); break;
  11.                 case LinePosition.vLeft:
  12.                     vt = new Vector3d(-((3 * dimTextFloat) + (dimTextHeight + 2 * dimTextFloat) * (level - 1)), 0, 0); break;
  13.                 case LinePosition.vRight:
  14.                     vt = new Vector3d((2 * dimTextFloat + dimTextHeight) * level, 0, 0); break;
  15.             }
  16.             Point3d linePoint = GeTool.MidPoint(line.StartPoint, line.EndPoint).Add(vt);
  17.             Database db = HostApplicationServices.WorkingDatabase;
  18.             AlignedDimension dimAligned = new AlignedDimension();
  19.             dimAligned.DimensionStyle = db.Dimstyle;
  20.             dimAligned.XLine1Point = line.StartPoint;
  21.             dimAligned.XLine2Point = line.EndPoint;
  22.             dimAligned.DimLinePoint = linePoint;
  23.             dimAligned.Dimtix = true;
  24.             return dimAligned;
  25.         }

本帖子中包含更多资源

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

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

本版积分规则

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

GMT+8, 2024-11-25 07:02 , Processed in 0.165597 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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