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;关于虚拟仪器开发工具的比较与选取
英文短句/例句
1.Developing Tool of Modern Managemant Software现代管理软件开发工具
2.NVSDK nVidia Software Development Kitnvidia软件开发工具包
3.Tools & Environment for Software Developing软件开发工具与环境
4.The Discussion about the Tools in the Secondary Development of AutoCAD2004简述AutoCAD 2004二次开发工具
5.JavaFX-A New Technology Used to Create,Deploy and Run Rich Internet Applications一种新的RIA开发工具——JavaFX
6.The Expert Control System Development Tool Based IPC;基于工业PC的专家控制系统开发工具
7.Fuzzy Control System Development Tools Based on Industrial PC;基于工业PC的模糊控制系统开发工具
8.A MIS Development Facility Based on XML and the Theory of Workflow;基于XML和工作流机制的MIS开发工具
9.A New MIS Development Facility Based on the Theory of Workflow;基于工作流机制的新型MIS开发工具
10.WORKFLOW-BASED MIS DEVELOPMENT TOOL:WF-MIS;基于工作流的MIS开发工具:WF-MIS
11.Study on Development Environment and Tool of MCAI Software;大学理科MCAI的开发环境及开发工具的研究
12.The development tools they're using are pretty much illegal copies.他们用的开发工具基本上都是盗版。
13.Please follow the command sequence defined in Develope Kit请按照开发工具箱中定义的命令顺序
14.The Five Tools and Its Merit and Demerit for the Secondary Developing AutoCADAutoCAD五种二次开发工具及其优缺点
15.Research and Design of Tool-chain Software Development Based on Spock Processor;基于Spock的软件开发工具链研究和设计
16.Software Engineering Tool and Environment ?软件工具与开发环境
17.Development of J2ME and Application of JBuilder Tool;J2ME开发及JBuilder工具的应用
18.AutoLISP Implementation of FEM Mesh ToolsAutoLISP有限元网格工具开发
相关短句/例句
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帮助中其描述如下。DescriptionInitializes the p_handle with the current Pro/ENGINEER object.