码迷,mamicode.com
首页 > 其他好文 > 详细

NX二次开发-UFUN三点创建圆弧UF_CURVE_create_arc_thru_3pts

时间:2020-07-05 21:30:57      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:rmi   code   span   include   double   inf   info   image   pts   

NX9+VS2012

#include <uf.h>
#include <uf_curve.h>


UF_initialize();

//三点创建圆弧
double first_point[3] = {-50.0, 0.0, 0.0};
double second_point[3] = {0.0, 50.0, 0.0};
double third_point[3] = {50.0, 0.0, 0.0};
tag_t arc_tag = NULL_TAG;
UF_CURVE_create_arc_thru_3pts(1, first_point, second_point, third_point, &arc_tag);

//创建三点整圆
double first_point1[3] = {-100.0, 0.0, 0.0};
double second_point1[3] = {0.0, 100.0, 0.0};
double third_point1[3] = {100.0, 0.0, 0.0};
tag_t arc_tag1 = NULL_TAG;
UF_CURVE_create_arc_thru_3pts(2, first_point1, second_point1, third_point1, &arc_tag1);

UF_terminate();

Caesar卢尚宇
2020年7月5日

技术图片

NX二次开发-UFUN三点创建圆弧UF_CURVE_create_arc_thru_3pts

标签:rmi   code   span   include   double   inf   info   image   pts   

原文地址:https://www.cnblogs.com/nxopen2018/p/13251518.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!