NX二次开发-UFUN创建点UF_CURVE_create_point

麻痹的 写了这么多年博客,到现在才发现,原来我UF_CURVE_create_point这个创建点函数没写过,

我以为这么简单的函数,早就已经写过了,刚才在写一个demo,要用到创建点,想直接去博客上

白嫖一下,发现竟然没有。擦,这不是耽误以后白嫖代码了

NX11+VS2013

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


UF_initialize();

//创建点
double point_coords[3] = { 10, 10, 10 };
tag_t point_tag = NULL_TAG;
UF_CURVE_create_point(point_coords, &point_tag);


UF_terminate();

阿飞
2021年10月14日

NX二次开发-UFUN创建点UF_CURVE_create_point

 

阿飞

2021年10月14日

 

上一篇:Elliptic Curve Cryptography: a gentle introduction


下一篇:R计算获取决策曲线数据(Decision Curve Analysis,DCA)并使用python进行可视化