明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1266|回复: 3

求助!!!!!!!!!!1

[复制链接]
发表于 2003-12-22 15:24:00 | 显示全部楼层 |阅读模式
请看下面的程序:
//pick a LINE
        ads_name usrent;
        ads_point usrpt;
        int status;

        status=acedEntSel("\nspecify a line:",usrent,usrpt);
        if(status!=RTNORM)
                {
                        if(status==RTCAN)return;
                }

        //open entity
        AcDbObjectId cId;
        AcDbLine *pCurve;
        if(acdbGetObjectId(cId,usrent)!=Acad::eOk)return;
        acdbOpenObject(pCurve,cId,AcDb::kForRead);
       
        AcGePoint3d pt3;
        if((status=pCurve->getStartPoint(pt3))!=Acad::eOk)
        {
                pCurve->close();
                return;
        }
        acutPrintf("\nStartPoint=%d,%d,%d",pt3.x,pt3.y,pt3.z);
        pCurve->close();

我选择了一条端点是(100,100,0)和(200,200,0)的直线,可结果却显示0,1079574528,0
请教高手为什么会是这样呢??
 楼主| 发表于 2003-12-26 20:19:00 | 显示全部楼层
有没有高手给解答一下呀????
发表于 2003-12-26 20:37:00 | 显示全部楼层

acutPrintf("\nStartPoint=%d,%d,%d",pt3.x,pt3.y,pt3.z);
改为:
acutPrintf("\nStartPoint=%lf,%lf,%lf",pt3.x,pt3.y,pt3.z);看看吧
 楼主| 发表于 2003-12-31 12:05:00 | 显示全部楼层
问题解决了,谢谢楼上的解答!!!:)
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 22:28 , Processed in 0.169521 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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