1)  3D animation
三维动画艺术
1.
The thesis thoroughly presents the common applications of 3D animation used in modern visual–design, and its revolutionary effects on visual-media.
文章详细介绍了现代计算机三维动画艺术在当代视觉设计相关行业中应用的广泛性,以及对视觉媒体的革命性影响。
2)  3D
三维
1.
A 3D method for predicting blind orebodies,based on a 3D visualization model and its application;
基于三维可视化技术的隐伏矿体预测
2.
IMAN-based 3D Die Design Process;
基于IMAN平台的三维模具设计过程
3.
Development of 3D visual mineral reserves evaluation prototype system;
矿产勘查储量估算三维可视化原型系统的开发
3)  three dimension
三维
1.
Preparation of one dimension, two dimension and three dimension Si- based nanowires;
一维,二维和三维Si基纳米线的制备
2.
Application of the virtual reality modelling language to the visualization of three dimension seismic data;
虚拟现实建模语言在三维地震可视化中的应用
3.
Comparison of three dimensional color power angiography with pathology on placental villous vessels in normal pregnancy;
正常胎盘内绒毛血管树的三维能量多普勒超声成像与病理的对照研究
4)  three-dimension
三维
1.
Simulation of temperature field in filling stage of injection molding using three-dimensional model;
注塑充模过程中温度场的全三维数值模拟
2.
Identification of Selective Regions in Overlapping Hyphenated Chromatographic Data Using Three-dimensional Latent Projective Graph(3D-LPG) and Chemometric Technique;
三维演进特征投影图及其量化方法识别联用色谱数据中选择性区域
3.
Three-dimensional Computer Modeling for Extrudate Swell of Polymer Melts;
粘弹性聚合物熔体挤出胀大的三维计算机模拟
5)  three dimensional
三维
1.
Evaluation of right ventricular systolic function pre-and post-operation in patients with tetralogy of Fallot by real time three dimensional echocardiography;
实时三维超声心动图对法洛四联症手术前后右室收缩功能分析
2.
Assessment of aortic regurgitation via real time three dimensional transthoracic echocardiographic measurements of vena contracta area;
实时三维经胸超声心动图测量缩流面积评价主动脉瓣反流
3.
Percutaneous microwave coagulation therapy in fresh dissected dog s liver by the real time three dimensional ultrasonography:a pilot study;
实时三维超声动态监测微波凝固离体犬肝的实验研究
6)  three-dimensional
三维
1.
Optimizing design of wellbore trajectory of three-dimensional multi-target directional well;
三维多目标定向井井眼轨道优化设计
2.
Research on the three-dimensional virtual CNC machine tool software;
三维虚拟数控机床的软件开发与研究
3.
Value of adenosine stress three-dimensional echocardiography in diagnosis of coronary artery diseases;
腺苷负荷实时三维超声心动图试验对冠心病的诊断价值
参考词条
补充资料:齿轮加工的三维动画仿真
本文结合了VB在计算与数据处理方面的优点与AutoCAD在精确绘图方面的优点,采用Visual Basic6.0驱动AutoCAD 2000实现了齿轮加工的三维动画仿真,有较强的实用性。文中介绍三维参数化建模以及三维动画仿真的实现步骤,具有一定的代表性。

一、引言


    齿轮加工动画仿真是齿轮设计中的重要环节,已有数篇关于该课题的文献。郭晓东采用基于AutoCAD环境的ObjectARX软件包,用C++语言在AutoCAD环境下实现了对锥齿轮切齿过程的仿真;罗庆生在3DSMAX环境中开发了齿轮机构工作动画;冯涓在CAD环境下,用AutoLisp语言建立了范成法加工齿轮的仿真演示程序。


    以上各种方法都有自己的特点,本文用VB对AutoCAD进行二次开发来实现齿轮加工的三维动画仿真,这是因为VB是目前最简捷的Windows软件开发工具兼程序设计语言,能对AutoCAD进行二次开发,可将AutoCAD当成自己程序中的一个图形窗口对其进行打开、绘图等操作,能十分方便地实现齿轮加工的动画仿真。


二、仿真程序流程图与窗体设计


    常见的齿轮加工方法有仿形法和范成法,范成法又包括齿轮插刀加工法、齿条插刀和齿轮滚刀加工法等。加工直齿圆柱齿轮的仿真程序流程,如图1所示。



图1 仿真程序流程图


    本程序只用一个窗体,用四个文本框接收输入参数:齿数Z、模数m、压力角α和变位系数x,用4个命令框控制子程序,1个命令框取消运行程序。该窗体运行结果如图2所示。



图2 仿真窗体


三、 仿真方法


1. 在VB中连接AutoCAD


    用VB控制AutoCAD,是通过VB的Object技术来控制AutoCAD的对象及其方法和属性的。VB6.0在调用AutoCAD 2000对象时,首先必须在VB中引用该对象库,方法是在VB的“Projects/Preferences”菜单中选择“AutoCADObjectLibrary”。


    程序设计伊始,需定义一个AutoCAD对象变量GearCAD,通过该变量可以访问AutoCAD的下级对象,定义方法为:Dim GearCAD As AcadApplication。然后在VB的窗体代码中添加如下代码,即可在程序运行时启动AutoCAD:


说明:补充资料仅用于学习参考,请勿用于其它任何用途。