|
|
|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
|
您的位置: 首页 -> 词典 -> ObjectARX编程
1) ObjectARX programming
ObjectARX编程
1.
By means of OBJECTARX programming Under AutoCAD 2000, to take topographic map essentials to restore into figure file, hologrammetry topographic maps making, and the exchange between topographic attribute and other system can be realized preferably.
在ACAD 2 0 0 0环境下采用OBJECTARX编程 ,实现将地形图要素的有关信息直接储存在相对应的图形文件中 ,制作全息化地形图 ,可以较好实现地形图属性与其它系统间的有机交
2) object ARX editor program technique
ObjectARX编程技术
3) ObjectARX program
ObjectARX程序
4) object ARX
ObjectARX
1.
Gauge CAD system based on AutoCAD is introduced in this paper, and in addition, the key techniques used in the development of this system,including the mixed programming by Object ARX and VLISP is discussed.
介绍了基于AutoCAD平台的量具CAD系统,讨论了应用ObjectARX与VLISP混合编程开发量具CAD系统的若干关键技术,并给出运行实例。
2.
Through the second development of AutoCAD, an object oriented gear hob CAD system is developed by means of Object ARX in the developing environment of Visual C ++ 6 0.
0开发环境中利用ObjectARX语言对AutoCAD 2 0 0 0进行二次开发 ,开发了面向对象的齿轮滚刀CAD系统。
5) c# objectARX
C#ObjectARX
6) ObjectARX technology
ObjectARX技术
1.
According to the manufacturing principle,three-dimensional modeling method for CNC machine tool,workpiece and cutter and the calculation method of light density for cutting process based on global illumination was introduced using OOP technology and three-dimensional modeling function and ObjectARX technology in CAD system.
利用面相对象技术和CAD系统的三维建模功能及其ObjectARX技术,根据螺旋锥齿轮的加工原理,提出了CNC铣齿机、齿坯和刀具三维模型的构建方法以及基于全局光照明的加工环境光照计算的具体方法。
2.
A method to reconstruct 3D solid using ObjectARX technology is presented, classifying and extracting every view features from engineering graphics, matching these view features, obtaining 3D primitives based on projection mode library, then using coordinate transform action and Boolean operations to create 3D solid, in the end a reconstruction system is developed in the AutoCAD environment.
提出了一种利用ObjectARX技术进行三维重构的方法。
3.
Introduced the main points of system setting to the development environment applying the ObjectARX technology of AutoCAD.
介绍了采用AutoCAD的ObjectARX技术,进行应用系统开发的环境设置要点,给出了在VisualC++6。
补充资料:Autocad VBA初级教程 (第二课 编程基础)
第二课 编程基础 本课主要任务是对上一课的例程进行详细分析 下面是源码: Sub c100() Dim cc(0 To 2) As Double '声明坐标变量 cc(0) = 1000 '定义圆心座标 cc(1) = 1000 cc(2) = 0 For i = 1 To 1000 Step 10 '开始循环 Call ThisDrawing.ModelSpace.AddCircle(cc, i * 10) '画圆 Next i End Sub 先看第一行和最后一行: Sub C100() …… End Sub C100是宏的名称,也叫过程名称,当用户执行C100时程序将运行sub 和end sub之间的所有指令。 第二行: Dim cc(0 To 2) As Double '声明坐标变量 后半段“'声明坐标变量”自动变为绿色字体,它是代码语句的注释,它不会影响程序运行,它的作用是告诉阅读者程序员的想法。对于简单的程序,一般不需要写注释,如果要编写非常复杂的程序,最好要多加注释,越详细越好,对于程序员来说,这是一个好习惯。 电脑真正编译执行的是这条语句:Dim cc(0 To 2) As Double 它的作用就是声明变量。 Dim是一条语句,可以理解为计算机指令。 它的语法:Dim变量名 As 数据类型 本例中变量名为CC,而括号中的0 to 2声明这个CC是一个数组,这个数组有三个元素:CC(0)、CC(1)、CC(2),如果改为CC(1 to 3),则三个元素是CC(1)、CC(2)、CC(3),有了这个数组,就可以把坐标数值放到这个变量之中。 Double是数据类型中的一种。ACAD中一般需要定义坐标时就用这个数据类型。在ACAD中数据类型的有很多,下面两个是比较常用的数据类型,初学者要有所理解。 Long(长整型),其范围从 -2,147,483,648 到 2,147,483,647。 Variant 它是那些没被显式声明为其他类型变量的数据类型,可以理解为一种通用的数据类型,这是最常用的。 下面三条语句 cc(0) = 1000 '定义圆心座标 cc(1) = 1000 cc(2) = 0 它们的作用是给CC变量的每一个元素赋,值其顺序是X、Y、Z坐标。 For i = 1 To 1000 Step 10 '开始循环 …… Next i '结束循环 这两条语句的作用是循环运行指令,每循环一次,i值要增加10,当i加到 1000时,结束循环。 i也是一个变量,虽然没有声明i变量,程序还是认可的,VB不是C语言,每用一个变量都要声明,不声明就会报错。简单是简单了,这样做也有坏处,如果不小心打错了一个字母,程序不会报错,如果程序很长,那就会出现一些意想不到的错误。 step后面的数值就是每次循环时增加的数值,step后也可以用负值。
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|