就上UG网学NX二次开发:
打开一个点构造器对话框,辅助用户选取点,此功能函数: UF_UI_point_construct;
UG二次开发
UG二次开发点构造器源代码:
- /*点构造器*/
- char Cue[] = "就上UG网学UG-点构造器";
- UF_UI_POINT_base_method_t base_method =UF_UI_POINT_INFERRED;
- tag_t Point = NULL_TAG;
- double BasePoint[] = { 0, 0, 0 };
- int Response;
- UF_UI_point_construct(Cue, &base_method, &Point, BasePoint, &Response);
复制代码
|