说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 开发工具
1)  development tool
开发工具
1.
The method and implementation of dealing with table knowledge in development tool of expert system;
专家系统开发工具中表知识的处理及实现
2.
The Compare and Analyse of the Development Tool of Web-based Course;
网络课程开发工具的比较与分析
3.
Comparison and choice about virtual instrument s development tools;
关于虚拟仪器开发工具的比较与选取
2)  development tools
开发工具
1.
The characteristics and selection of the development tools for designing the optimized layouts of the stamping blanks are analyzed.
讨论了冲裁件优化排样的原理和方法 ,并对几种算法作了比较 ,对冲裁件优化排样程序设计使用的开发工具的特点及选择作了分析 ,给出了基于VB、ObjectARX和AutoCAD相关对象和方法。
2.
Taking into consideration the particularity in medical basic chemistry (MBC),the paper proposes to make the MBC CAI courseware by Authorware and some multi media development tools.
从医用基础化学课程的特殊性出发,讨论了利用多媒体开发工具Authorware等制作医用基础化学课程CAI课件,提出了初步开发思想。
3.
Based on the present situation of the development and application about MIS in our country, this paper discusses the problem about the MIS programming environment,MIS development methods and MIS development tools.
针对我国微机MIS开发与应用现状,介绍了MIS应用软件的开发环境,探讨了MIS应用软件的开发方法,并对MIS应用软件的开发工具展开了讨论,最后,指出了MIS应用软件开发中存在的问题及应用前景。
3)  developing tool
开发工具
1.
Research on CAPP system intellect developing tool for parts of heavy-duty machinery;
重机零件CAPP系统开发工具的研究
2.
A CAPP developing tool based on GT;
基于GT的CAPP开发工具的研究
3.
A developing tool for part information input model─first part of capp system developing tool;
零件信息输入模块开发工具
4)  Developing Tools
开发工具
1.
Introduced the work principles of the CAPP developing tools system,analyzed the specific problems and pivotal technologies that meet in developping and has put forward the Solution.
介绍了CAPP开发工具系统的工作原理,分析了开发中遇到的问题和关键技术,并提出了解决办法。
5)  Toolkit
开发工具
1.
A Survey of Toolkits and Platforms for Multi-Agent Systems Development;
MAS开发工具和运行平台技术回顾
2.
Interactive 3D Graph Toolkit Based on DirectX;
基于DirectX的交互式三维图形开发工具
3.
Design of an Interactive 3D Toolkit Based on OpenGL;
基于OpenGL的交互式三维图形软件开发工具
6)  tool development
工具开发
补充资料:Pro/ENGINEER开发工具Pro/TOOLKIT简介
1 前言

    Pro/TOOLKIT是Pro/ENGINEER的一个应用程序接口(API),其的编程语言是C 语言,它可以对Pro/ENGINEER进行功能扩展,满足PTC客户的特定需求。而且,Pro/TOOLKIT提供了定制标准Pro/ENGINEER用户界面的能力,自动执行重复性的程序,通过Pro/ENGINEER集成的内部程序(Dll)或外部应用程序(Exe)可以为造型用户提供自定义的应用程序、设计规划和绘图自动化。


2 Pro/TOOLKIT编程条件和工具


    知道如何写C程序,就已经具备了使用Pro/TOOLKIT的条件,应该能够理解指针,当把数据从一个函数传到另一函数时,将经常使用到它。Pro/TOOLKIT帮助,包含2000多个函数,并且可以通过例子代码学习如何使用。除此之外,如果想解决几何学问题,还需要对失量理论有一定的了解。


3 Pro/TOOLKIT程序中的结构体


    Pro/TOOLKIT都是用C语言编写的,每个对象都用结构体来描述,因此需要了解对象是如何使用的。为了使用结构体,需要定义它,Pro/TOOLKIT提供许多“typedefs”,这些typedefs只不过是Pro/ENGINEER结构体的伪指令。例如:


typedef struct entity* ProPoint;
typedef struct sld_part* ProSolid;


    这些也叫做OHandles (from Opaque handles),在Pro/ENGINEER中它们直接获得对象的内存地址。在某些情况下,这样做可能是危险的,因此PTC提供了另外一种结构体类型,它只包含Pro/ENGINEER的内部数据库中项目的必要信息。这种结构体(labeled DHandle from data handle)是一种类的结构,它包括对象的类型、ID等。许多函数命令都和下面的结构体相联系。


typedef struct pro_model_item
{
ProType type;
int id;
ProMdl owner;
}ProModelitem,ProGeomitem,ProExtobj, ProFeature,ProProcstep,ProSimprep,ProExpldstate,
ProLayer,ProDimension,ProDtlnote,ProDtlsyminst,ProGtol,ProCompdisp  
 
    如果处理几何问题,要用到ProModelitem、ProGeomitem 和ProFeature这几个结构体。


4 Pro/TOOLKIT中的常用函数及使用


    需要了解的第一个函数是ProMdlCurrentGet()。在Pro/TOOLKIT帮助中其描述如下。


Description
Initializes the p_handle with the current Pro/ENGINEER object.

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