uf 实体操作(创建体、块、面等等什么的我是没有放到教程里的)
这些函数用法很简单 自行翻阅 uf 英文帮助完成
关键词语
ask 表示 问(信息)
set 表示 设置
create 表示 创建
比如函数:
UF_MODL_create_chamfer
其中UF_MODL 表示头文件 UF_MODL.h
create表示创建 最后一个 chamfer 表示创建的是什么东东
帮助文件说的很明白 所以我根本不需要 一一都翻译出来。
===============================
------- 当我们找到这个函数时 帮助文件显示如下
UF_MODL_create_chamfer
Creates a chamfer feature using the type of chamfer, first and second
offset, and angle and list of edges to operate on. The output of this
function is the object identifier associated to the chamfer.
See Also
extern int UF_MODL_create_chamfer (
int subtype,
char * offset1,
char * offset2,
char * theta,
uf_list_p_t edges,
tag_t * feature_obj_id );
=============================================================== 变量类型 变量字母 输入/输出类型 有关这个变量的说明 int | subtype | Input | Chamfer type:
1 = Single Offset
2 = Double Offset
3 = Offset and Angle
4 = Freeform Single Offset
5 = Freeform Double Offset | char * | offset1 | Input | Chamfer offset 1 | char * | offset2 | Input | Chamfer offset 2 | char * | theta | Input | Chamfer angle | uf_list_p_t | edges | Input | List of edges to chamfer | tag_t * | feature_obj_id | Output | Feature object identifier of created chamfer |
Environment
Internal and External
帮助说的 很明白了 我就不多说什么了(英文看不懂没关系,可以百度在线翻译)
c# 和 vb 和 语法是很接近的(c#不会 可以去先学简单的vb 在去学c#)
|