|
|
|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
|
您的位置: 首页 -> 词典 -> ObjectARX开发
1) ObjectARX
ObjectARX开发
2) ObjectARX
ObjectARX开发工具
1.
The characteristics of the ObjectARX and ADO database interface are introduced,the key technology of developing the part parametric modeling application based on database with ObjectARX and ADO is introduced.
介绍ObjectARX开发工具和ADO数据库接口的基本特点,详细阐述采用ADO数据接口以及ObjectARX二次开发工具,开发基于数据库技术的零件参数化建模应用程序的关键技术,并以圆形凸模零件为例,在AutoCAD2007平台上进行验证,取得了良好的效果。
3) 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系统。
4) c# objectARX
C#ObjectARX
5) 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。
6) 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编程 ,实现将地形图要素的有关信息直接储存在相对应的图形文件中 ,制作全息化地形图 ,可以较好实现地形图属性与其它系统间的有机交
补充资料:Pro/E二次开发使用toolkit开发trigger的程序
使用toolkit开发trigger的程序时,往往需要能够连续通过trigger来触发dll中的函数. 我碰到的问题: 1.配置trigger: Name: CimDll Event: Create PIV Time: POST RequireNO DLL:Cim.dll Function:PDMTPIVCreatePostOperation 2.源代码: int PDMDLLInit() { PTCERROR pdm_status; FILE *g_pfileLog; g_pfileLog =fopen("test.dat","w"); setbuf(g_pfileLog,NULL); fprintf(g_pfileLog,"begin test\n"); pdm_status = PDMTriggerRegister("PDMTPIVCreatePostOperation", PDMTPIVCreatePostOperation); if (pdm_status != PDM_SUCCESS) { printf("Failed to Register Trigger PIV Create Post.\n"); } return (pdm_status); } int PDMTPIVCreatePostOperation(int argc, void **argv) { fprintf(g_pfileLog,"test\n"); ..... fprintf(g_pfileLog,"end test\n"); fclose(g_pfileLog); } 结果:以上代码存在的问题:如果我们在第一次checkin到C/S中后,删除test.dat文件,然后再进行checkin时,发现没有再生成test.dat,在函数PDMTPIVCreatePostOperation()中所进行的对文件的操作都无效. 原因:我们使用trigger触发时,真正起作用的是函数:PDMTPIVCreatePostOperation(),而PDMDLLInit()只是在第一次checkin时起作用,所以在第一次调用PDMTPIVCreatePostOperation()后,我就fclose(g_pfileLog),所以出现了上面的情况.所以注意的是:不要把一些重要的东西放在函数PDMDLLInit()中.
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|