明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 4210|回复: 5

[求助]看看getClosestPointTo函数的使用

[复制链接]
发表于 2003-10-17 13:47:00 | 显示全部楼层 |阅读模式
程序如下:
AcGeCurve2d *geCurve1,*geCurve2;
AcGePoint2d zjPt1,zjPt2;
geCurve1->getClosestPointTo(geCurve2,zjPt1,zjPt2);
编译时提示:
void __thiscall AcGeCurve2d::getClosestPointTo(const class AcGePoint2d &,class AcGePointOnCurve2d &,const class AcGeTol &) const' : cannot convert parameter 1 from 'class AcGeCurve2d *' to 'const class AcGePoint2d &
应该是*和&的问题吧,可是如何修改呢?谢谢了.
发表于 2003-10-17 17:08:00 | 显示全部楼层
你所调用的getClosestPointTo()函数的原型是这样:
void getClosestPointTo(const AcGeCurve2d& curve2d,
       AcGePointOnCurve2d& pntOnThisCrv,
      AcGePointOnCurve2d& pntOnOtherCrv) const;
第一个参数需要一个AcGeCurve2d类对象的地址(或者说引用),在程序中geCurve1变量为指针,从而编译程序不能进行类型转换。你应该用*geCurve1来传递参数。
源码共享区内置顶文章“深入.......”就是回答这方面的,文章详细介绍了使用*和&进行函数参数传递时的方法,并且作了深入、详细的分析以回答为什么要那样做。建议你认真阅读那篇文章。
 楼主| 发表于 2003-10-18 00:21:00 | 显示全部楼层
真是痛苦,按照你的建议将geCurve2 改为*geCurve2,可仍然不行,编译提示:
void __thiscall AcGeCurve2d::getClosestPointTo(const class AcGePoint2d &,class AcGePointOnCurve2d &,const class AcGeTol &) const' : cannot convert parameter 1 from 'class AcGeCurve2d' to 'const class AcGePoint2d &
究竟改如何修改呢?麻烦你了,leeyeafu大哥.我着急用这个功能的.
发表于 2003-10-20 09:03:00 | 显示全部楼层
我没具体分析,版主的方法不行的话,可能需要分析一下里面const的问题
发表于 2003-10-20 09:31:00 | 显示全部楼层
我将你的程序复制到我写的一个ARX工程中编译,出现的编译错误是不能将参数2从AcGePoint2d转换为AcGePointOnCurve2d&,而不是你说的参数1类型错误。以下是我改写的程序,在VC6和VC++.NET中编译通过,因为没有其它代码(我也懒得写了,呵呵......),无法证明能运行通过。

AcGeCurve2d *geCurve1,*geCurve2;
AcGePointOnCurve2d zjPt1,zjPt2;  //该类派生自AcGePointEnt2d,
                             //与AcGePoint2d有很大不同,后面将看到如何转换
geCurve1->getClosestPointTo(*geCurve2,zjPt1,zjPt2,AcGeContext::gTol);
    //加上最后一个参数是我个人编程习惯,你不一定要这样做。
    //我的目的是为了使自己知道系统不会调用另一个三参数的函数重载版本。
AcGePoint2d pt1,pt2;
pt1 = zjPt1.point();   //AcGePointOnCurve2d::point()函数返回AcGePoint2d点坐标。
pt2 = zjPt2.point();
 楼主| 发表于 2003-10-22 20:38:00 | 显示全部楼层
多谢版主的耐心解答。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 20:27 , Processed in 0.166886 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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