最小包容盒子UF_MODL_ask_bounding_box_exact
//获取选中对象的TAG值
tag_t objTAG = face_select0->GetSelectedObjects()[0]->Tag();
tag_t OriWcs = NULL_TAG;
UF_CSYS_ask_wcs(&OriWcs);
//获取包容盒信息
double objsBoxInWCS[6] = { 0 };
double min_corner[3] = { 0 };
double dir[3][3] = { 0 };
double dis[3] = { 0 };
UF_MODL_ask_bounding_box_exact(objTAG, OriWcs, min_corner, dir, dis);
//输出在工作坐标系下的长、宽、高
double output_wcs_length_width_height[3] = { 0 };
output_wcs_length_width_height[0] = fabs(objsBoxInWCS[3] - objsBoxInWCS[0]);
output_wcs_length_width