明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2429|回复: 2

[ARX]请问AcGePoint3d 与const ads_point 该如何转换

[复制链接]
发表于 2005-9-26 15:22:00 | 显示全部楼层 |阅读模式

请教一个问题:

 AcGePoint3d pt [512],我现在存在两个坐标:

现在要比较AcGePoint3d pt [0]与AcGePoint3d pt [n]是否是同一个点!以便确定画图结束!

可是总是出错:

error C2664: 'Equal_Points' : cannot convert parameter 1 from 'class AcGePoint3d' to 'const double []'

请问AcGePoint3d 与const ads_point 该如何转换才好!

调用以下函数:

int Equal_Points (const ads_point p1, const ads_point p2)
{
    // 指定误差范围
    const ads_real Equality_Margin = (ads_real)0.00000001;
   
    int c ;
    for (c = X ; c <= Z ; c++) {
        if (fabs(p1[c] - p2[c]) > Equality_Margin) {
            return (0) ;
        }
    }
    return (1) ;
}

 楼主| 发表于 2005-9-26 15:46:00 | 显示全部楼层
问题解决:
之前有过类似的帖子,权当再学习一下吧!:)
void changepoint(ads_point& ads_pt,AcGePoint3d acge_pt)
{
 double x=acge_pt[0];
 double y=acge_pt[1];
 double z=acge_pt[2];
 ads_pt[X]=x;
 ads_pt[Y]=y;
 ads_pt[Z]=z;
}
发表于 2005-10-16 17:26:00 | 显示全部楼层

从AcGePoint3d转换到ads_point函数如下:

ads_point ChangePtFrom3dToAds(AcGePoint3d pt)

{

     ads_point adspt;

     adspt[X]=pt.x;

     adspt[Y]=pt.y;

    adspt[Z]=pt.z;

     return adspt; 

}

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

本版积分规则

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

GMT+8, 2024-11-26 03:53 , Processed in 0.172380 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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