明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2331|回复: 4

[求助]我写的计算面积的函数总觉得有点不对劲,高手看看?

[复制链接]
发表于 2009-9-17 09:52:00 | 显示全部楼层 |阅读模式

float Draw2dPLArea()
{
 AcGePoint2dArray points;
 AcGePoint3d myptCurrent;
 ads_point pt,ptStart;
 AcGePoint3d pthigh;
 int i=0;
 double area=0;
 ads_point ptPrevious, ptCurrent; // 前一个参考点,当前拾取的点
 int index = 2; // 当前输入点的次数
 AcDbObjectId polyId; // 多段线的ID
 int ptnum=0;
 
 int rc; // 返回值
 ACHAR kword[20]; // 关键字
 acedInitGet(RSG_NONULL,_T("C"));

 //提示用户选择想要勾画的工程面积点
 if (acedGetPoint(NULL, _T("\n输入第一点:"),ptStart) != RTNORM)
  return 0;
 acdbPointSet(ptStart, ptPrevious);
   
 while (acedGetPoint(ptPrevious,_T("\n输入下一点:"), ptCurrent) ==RTNORM)
 {    

  if (index==2)
  {
   
   // 创建多段线
   AcGePoint2d ptGe1, ptGe2; // 两个节点
   ptGe1[X] = ptPrevious[X];
   ptGe1[Y] = ptPrevious[Y];
   ptGe2[X] = ptCurrent[X];
   ptGe2[Y] = ptCurrent[Y];

   points.insertAt(0,ptGe1);
   points.insertAt(1,ptGe2);

   /*pPoly->addVertexAt(0, ptGe1);
   pPoly->addVertexAt(1, ptGe2);*/
   
   
  }
  else if (index>2)
  {
   // 修改多段线,添加最后一个顶点
   
   AcGePoint2d ptGe; // 增加的节点
   ptGe[X] = ptCurrent[X];
   ptGe[Y] = ptCurrent[Y];
   /*pPoly->addVertexAt(index - 1, ptGe);*/
   points.insertAt(index-1,ptGe);

  }
  index++;

  acdbPointSet(ptCurrent, ptPrevious);


 }


 //add points into AcDbLine
 int vexnum=points.length();
    AcDbPolyline *pPoly=new AcDbPolyline(vexnum);
    for(i=0;i<vexnum;i++)
 {
      pPoly->addVertexAt(i,points.at(i));
 }
 

 pPoly->getArea(area);

 pPoly->close();

 return area;
}

高手帮看看行么?总觉得有些地方不妥。小妹谢谢了!

发表于 2009-9-18 09:56:00 | 显示全部楼层
AcDbPolyline *pPoly=new AcDbPolyline();
    for(i=0;i<vexnum;i++)
 {
      pPoly->addVertexAt(i,points.at(i));
 }
 楼主| 发表于 2009-9-18 13:28:00 | 显示全部楼层
其他的对么?总感觉不是很完整?另外正么将起点设为高亮,方便用户捕捉?谢谢?
请各位各抒己见!
发表于 2009-9-18 16:42:00 | 显示全部楼层

返回结果是对的。

最好设置多线为闭合。

acedGetPoint在这情况不太合用,可以尝试用AcEdJig类。

 楼主| 发表于 2009-9-19 08:59:00 | 显示全部楼层
AcEdJig没用过,您能简单介绍下么?我查帮助怎么是用于拖拽的呢?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 12:39 , Processed in 0.143424 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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