1)  SDK
SDK
1.
Application of SolidWorks-API-SDK on Die-casting CAD;
SolidWorks-API-SDK在压铸模具CAD中的应用
2.
How to Use UCDOS SDK for FoxPro to Disign Programme;
如何使用 UCDOS SDK for FoxPro 编程
3.
Development EDA Software Based on Protel SDK;
基于Protel SDK的EDA软件开发
2)  SDK
SDK开发工具
3)  SDK
软件开发工具箱
4)  accord SDK
Accord 开发包
5)  DirectX SDK
DirectX SDK
1.
This paper builds up a simulated interactive driving scene system (IDSS) using the DirectX SDK in the circumtance of Visual C++ according to the pricinple of cartoon.
本文结合我国道路交通实际情况,依据动画机理,采用微软DirectX SDK框架,在Visual C++6。
2.
Visual simulation is realized though the use of DirectX SDK.
基于DirectX SDK实现了气囊缓冲过程的可视化仿真。
6)  VRP-SDK
VRP-SDK
1.
With the campus navigation system of Shandong University of Technology as example,the implementation of model-simplification,model-optimization,multi-view stereovision and the virtual navigation system based on VRP-SDK and MFC were discused,and some key techniques in the system of virtual campus were also discussed.
以设计山东理工大学漫游系统为例,讨论了场景中模型的构建和优化、多通道立体显示以及基于VRP-SDK和MFC虚拟漫游系统的实现方法,并探讨了虚拟校园漫游系统实现过程中的一些关键技术。
参考词条
补充资料: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.

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