马上注册登录,享用更多网站功能!
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
#include <stdio.h>
#include <stdlib.h>
#include <uf.h>
#include <uf_ui.h>
#include <uf_disp.h>
#include <uf_curve.h>
#include <uf_drf.h>
#include <uf_modl.h>
#include <uf_disp.h>
#include <uf_obj.h>
#include <uf_csys.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)
{
while(true)
{
char message[]="程序 BY XXM";
char title[]="请选择曲线对象 -4MM";
int scope=UF_UI_SEL_SCOPE_NO_CHANGE;
int response;
tag_t object;
double cursor[3];
tag_t view;
UF_CALL(UF_UI_select_with_single_dialog (
message, //这里添提示栏的数据
title, //这里添对话框的数据
scope,
NULL,//初始化设置函数,可以定义类型
NULL,
&response, //按钮返回值
&object,
cursor,
&view )
);
UF_CALL(UF_CURVE_edit_length (
object,
1,
-4,
1,
UF_CURVE_NATURAL_SHAPE)
);
UF_CALL(UF_DISP_set_highlight(object,
0)
);
if(response==UF_UI_CANCEL)
{
break;
}
}
}
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);
}
上面是我写的程序,我想做一个像延伸曲线的命令,遇到一个问题,怎么判断所选曲线的开头,我只想要鼠标选的一端减少-4MM!
谢谢! |