点击查看详细介绍

UF_MODL_create_bsurf_thru_pts() 函数的参数解释说明、函数详细用法,以及实例代码演示

misnn 9年前 1584 0

购买与咨询 NX 二次开发视频教程,请联系微信号:13890821008  QQ号:85585969  


函数结构:
UF_MODL_create_bsurf_thru_pts
(
int create_mode,
int u_closed_status,
int v_closed_status,
int u_degree,
int v_degree,
int num_rows,
UF_MODL_bsurf_row_info_t * pts_info_per_row,
tag_t * bsurf_obj_id
)

函数说明:
创建使用用户指定的创建方法的B表面片体与点。

函数参数:
第1个参数为输入:
输入int 整数型的参数,参数的变量格式为create_mode,创建模式=1 - >指定点应该在于对B面=2 - >指定点应作为控制顶点= 3 - >指定点应作为控制顶点一起使用指定的加权信息

第2个参数为输入:
输入int 整数型的参数,参数的变量格式为u_closed_status,y方向的开/关状态=0 - >开=1 - > 关闭

第3个参数为输入:
输入int 整数型的参数,参数的变量格式为v_closed_status,在V方向开/关状态=0 - >开=1 - > 关闭

第4个参数为输入:
输入int 整数型的参数,参数的变量格式为u_degree,学位U方向

第5个参数为输入:
输入int 整数型的参数,参数的变量格式为v_degree,学位V方向

第6个参数为输入:
输入int 整数型的参数,参数的变量格式为num_rows,点的行数

第7个参数为输入:
pts_info_per_row代表参数变量,UF_MODL_bsurf_row_info_t * 为输入参数类型,点,每个行的信息。这是尺寸为NUM_ROWS UF_MODL_bsurf_row_info_t结构的阵列。

第8个参数为输出:
bsurf_obj_id代表参数变量,tag_t * 为输出参数类型,创建BY-表面的标签

UF_MODL_create_bsurf_thru_pts函数实例代码演示:
说明:此文件包含以下外部函数支持bsurface功能:UF_MODL_ask_bsurfUF_MODL_create_bsurfUF_MODL_edit_bsurf
[quote]
#include <stdio.h>
#include <stdlib.h>
#include <uf.h>
#include <uf_part.h>
#include <uf_defs.h>
#include <uf_modl.h>


#define UF_CALL(X) (report( __FILE__, __LINE__, #X, (X)))

static int report( char *file, int line, char *call, int irc)
{
if (irc)
{
char messg[133];
printf("%s, line %d: %s\n", file, line, call);
(UF_get_fail_message(irc, messg)) ?
printf(" returned a %d\n", irc) :
printf(" returned error %d: %s\n", irc, messg);
}
return(irc);
}

static void do_ugopen_api(void)
{

char *prtnam = "create_bsurf";

/* Points for B-surface */
double points[16][3] = { 3.5, 2.5, 0.0,
4.0, 2.6, 0.2,
4.5, 2.6, 0.2,
5.0, 2.5, 0.0,
3.3, 3.0, 0.2,
4.1, 3.2, 0.3,
4.5, 3.2, 0.3,
5.0, 3.0, 0.2,
3.0, 3.5, 0.2,
3.8, 3.6, 0.3,
4.5, 3.6, 0.3,
5.0, 3.5, 0.2,
2.6, 4.0, 0.0,
3.3, 4.0, 0.2,
4.5, 4.0, 0.2,
5.0, 4.0, 0.0 };

int create_mode = 1;
int u_closed_status = 0;
int v_closed_status = 0;
int u_degree = 3;
int v_degree = 3;
int num_rows = 4;
int pts_per_row[4] = {4, 4, 4, 4};

int ii, jj, kk, indx;

tag_t part_tag;
tag_t bsurf_obj_id = NULL_TAG;

UF_MODL_bsurf_row_info_t *pts_info_per_row; /* pts info for each row */
UF_MODL_bsurface_t bsurf;


/* Open a new part */
UF_CALL( UF_PART_new(prtnam, METRIC, &part_tag) );

pts_info_per_row = ( UF_MODL_bsurf_row_info_t *)malloc( num_rows *
sizeof(UF_MODL_bsurf_row_info_t) );

/* allocate and load point and other information for each row of points */
indx = 0;
for (ii=0; ii<num_rows; ii++)
{
pts_info_per_row[ii].num_points = pts_per_row[ii]; /* can vary */
pts_info_per_row[ii].points = (double *)malloc( pts_per_row[ii] * 3 *
sizeof(double) );

pts_info_per_row[ii].weight = (double *)malloc( pts_per_row[ii] *
sizeof(double) );

/* load up point and weight info */
for (jj=0, kk = 0; kk<pts_per_row[ii]; kk++, jj+=3, indx++)
{
pts_info_per_row[ii].points[jj] = points[indx][0];
pts_info_per_row[ii].points[jj+1] = points[indx][1];
pts_info_per_row[ii].points[jj+2] = points[indx][2];
pts_info_per_row[ii].weight[kk] = 1.0;

}
}

/* create B-surface */
UF_CALL(UF_MODL_create_bsurf_thru_pts( create_mode, u_closed_status,
v_closed_status, u_degree,
v_degree, num_rows, pts_info_per_row,
&bsurf_obj_id));

if ( bsurf_obj_id == NULL_TAG )
printf("*** ERROR CREATING B-SURFACE ***\n");

/* free allocated memory */
for (ii=0; ii<num_rows; ii++)
{
free(pts_info_per_row[ii].points);
free(pts_info_per_row[ii].weight);
}

free(pts_info_per_row);


/* ask the B-surface information */
UF_CALL(UF_MODL_ask_bsurf( bsurf_obj_id, &bsurf ));

/* validate the surface */
if ( (bsurf.order_u != u_degree+1) || (bsurf.order_v != v_degree+1) )
printf("*** ERROR ASKING B-SURFACE ***\n");

UF_CALL(UF_MODL_free_bsurf_data(&bsurf));


}

/*ARGSUSED*/
void ufusr(char *param, int *retcode, int param_len)
{
if (!UF_CALL(UF_initialize()))
{
do_ugopen_api();
UF_CALL(UF_terminate());
}
}

int ufusr_ask_unload(void)
{
return (UF_UNLOAD_IMMEDIATELY);
}



[/quote]

0

最新回复 (0)
请登录后发表新帖