说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 集成开发工具
1)  Integrated Development Tool Kit
集成开发工具
2)  Development Tools
开发工具集
1.
Researches & Applications on Enterprise Cyber-marketing Supporting System and Its Relative Development Tools;
企业网络营销支持系统及其开发工具集研究与应用
3)  Rabbit 2000 TM TCP/IP development kit
Rabbit2000TMTCP/IP集成开发工具
4)  integrated development environment (IDE)
集成开发环境,集成开发工具,综合开发环境
5)  Java development kit
Java开发工具集
6)  tools integration
工具集成
1.
According to the requirement of modeling and simulation tools integration in Virtual Prototype Collaborative Modeling Environment, the application methods of MATLAB were studied and its integration methods were provided in the phases of building and validating simulation models and developing simulation application.
针对虚拟样机协同建模环境对建模仿真工具集成的需求,对典型建模工具MATLAB的应用方法进行研究,提出在虚拟样机协同建模环境中仿真模型的建立、验证以及仿真应用软件开发各个阶段中MATLAB的集成与应用方法。
2.
The multidisciplinary tools integration is one of the key technical problems in the Virtual Prototyping design and simulation on the complex product.
多领域工具集成是复杂产品虚拟样机设计仿真需要解决的技术问题之一。
3.
According to the requirement of modeling and simulation tools integration in MDO environment of SBA system,the integration methods of typical tools (MATLAB/DATCOM) were studied such as COM based integration,MCC methods and MATLAB engine method.
针对SBA系统多学科优化环境构建中各学科分析过程对建模仿真工具集成的需求,研究了。
补充资料: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.

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