说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> Pro/Toolkit技术
1)  Pro/Toolkit technology
Pro/Toolkit技术
1.
To respond quickly to market,to improve design efficiency,this paper brings a rapid design system of metalfroming machines assembly models based on Pro/Toolkit technology aiming at the metalforming product s characteristics of small batch,various classes,long design period.
为了快速响应市场需求,提高设计效率,针对锻压机床产品少批量、多种类、设计周期长等特点,利用模块化技术分析锻压机床产品,提出基于Pro/Toolkit技术的锻压机床产品装配模型的快速设计体系,分析模块划分、模块设计、产品建模、产品装配等相关技术。
2)  development technology of Pro/Toolkit
Pro/Toolkit的二次开发技术
1.
Besides, development technology of Pro/Toolkit is applied to resolve the communication between user s application program in Visual C++.
并利用Pro/Toolkit的二次开发技术解决了VisualC ++6 。
3)  Pro/ENGINEER technique
Pro/ENGINEER技术
1.
Taking the bracket of LCD as an example, the paper introduced the design process using Pro/ENGINEER technique.
以熊猫新产品液晶显示器支架底座为例,介绍使用Pro/ENGINEER技术设计产品模型的工艺过程。
4)  Pro/TOOLKIT customized development
Pro/TOOLKIT二次开发
1.
From improving production design efficiency,discussed the function of parametric design and implementation strategy and approach of 3D model parametric design in the condion of Pro/ENGINEER Wildfire,analysed the processed of three-dimensional standard part library parametric design which based on Pro/TOOLKIT customized development and gived example of application.
从提高产品设计效率和质量出发,探讨了参数化设计功能和Pro/ENGINEER Wildfire环境下三维模型参数化设计的实现策略和途径,分析了基于Pro/TOOLKIT二次开发的三维标准件库参数化设计的过程,并给出了应用实例。
5)  Pro/E three-dimension technology
Pro/E三维技术
1.
The Pro/E three-dimension technology used in group fixture design;
Pro/E三维技术在成组夹具设计中的应用
6)  Assembly manufacture technology of Pro/Engineer software
Pro/Engineer软件的集成制造技术
补充资料: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.

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