1)  visualization toolkit
可视化开发工具
1.
The applications of human visualization reveal its great potential in medical field,In this paper,the research background of the human visualization in medical is introduced,the common use of visualization toolkits are summarized,the effect of image segmentation in the medical.
主要介绍人体可视化的研究背景、常用的可视化开发工具包、图像分割在医学可视化中的作用,最后对它的应用发展前景进行展望。
2)  Visual C++ visual development tools
Visual C++可视化开发工具
3)  visual
可视
1.
The power distributing station with five remote-controller-An intellectually visual system;
变配电站“五遥”—智能化可视系统
2.
The Application of AT89S51 in Visual Speaker-phone;
AT89S51在可视对讲门口机中的应用
3.
Researched the situation of building intellectualized system,making use of currently popular wireless video transfers technology,design a new embedded visual door bell system based on the Freescale i.
该文提出一种无线可视对讲系统设计方案,系统采用了飞思卡尔i。
4)  visual
可视化
1.
Visual Software Development on Pneumatic DTH Design;
可视化气动潜孔锤设计软件系统的开发
2.
Application of the technique of visual computer numerical simulation in analysis of the deep stope stability;
基于可视化的计算机数值模拟技术在深部采场稳定性分析中的应用
3.
The Visual Realization For Parameter Management of Open CNC Based-on Linux;
基于LINUX的开放式数控系统参数管理可视化实现
5)  visibility map(VMap)
可视映射
6)  micro visualization
微可视化
1.
Mass transfer kinetics of PVP across oil-water interface by using micro visualization technique;
在油-水界面上聚乙烯吡咯烷酮传质动力学的微可视化
参考词条
补充资料: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.

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