王阿非 发表于 2012-3-22 16:54:57

关于cad中acedCommand的函数的参数设置问题

ads_point pt1;
                ads_real rl;
acedCommand(RTSTR,_T("circle"),RT3DPOINT,pt1,RTREAL,rl,0); //圆

ads_point pt1;
acedCommand(RTSTR,_T("point"),RT3DPOINT,pt1,RTSTR,whoIam::strNull,0); //点

ads_point pt1,pt2;
acedCommand(RTSTR,_T("line"),RT3DPOINT,pt1,RT3DPOINT,pt2,RTSTR,whoIam::strNull,0);//直线

其中块和pline的参数具体怎样设置不知道,还望高手指点

江湖远人 发表于 2012-4-21 10:32:24

都没人顶啊

chpmould 发表于 2012-4-22 11:31:12

建议ARX中尽量不用COMMAND命令,否则还不如用LISP写的方便

王阿非 发表于 2012-4-23 08:02:39

呵呵,已经解决了,我直接用dwg类
页: [1]
查看完整版本: 关于cad中acedCommand的函数的参数设置问题