#include <uf.h> #include <uf_ui.h> #include <uf_vec.h> UF_initialize(); //判断一个三维向量在指定的公差内是否为零 double vec[3] = { 0.001, 0, 0 }; double tolerance = 0.001; int is_zero = 0;//0 = Vectors is not zero 1 = Vectors is zero UF_VEC3_is_zero(vec, tolerance, &is_zero); char msg[256]; sprintf(msg, "%d", is_zero); uc1601(msg, 1); UF_terminate(); 阿飞 2021年10月10日
阿飞
2021年10月10日