NX二次开发-制图-UF_DRAW_add_detail_view 添加工程视图

20 篇文章 0 订阅
4 篇文章 0 订阅
#include <stdio.h>
#include <uf_draw.h>
#include <string.h>
#include <uf.h>
#include <uf_ui.h>

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

static int report_error( char *file, int line, char *call, int irc)
{
    if (irc)
    {
        char
            err[133],
            messg[300];

        UF_get_fail_message(irc, err);
        sprintf(messg, "\n%s\nerror %d at line %d in %s\n%s",
            err, irc, line, file, call);
        printf("%s\n", messg);
        strcpy(&messg[129], "...");
        uc1601(messg, TRUE);  /* Internal only - remove for external */
    }
    return(irc);
}

static void do_it(void)
{
 
    tag_t       图纸页TAG;
    tag_t       视图TAG = NULL_TAG;
    tag_t       新细节视图;
	char        图纸页名称="SHEET1";
	char        视图名称字符串="TOP";
    char        视图名称[30]="";
    double      图纸尺寸[2];//[0]高度、[1]宽度;
    double      视图左下角基点坐标[2] = { 4.0, 4.0};
    double      视图右上角基点坐标[2]= { 12.0, 12.0};
    double      视图比例 = 2, 绘图参考点[2] = { 20.0, 20.0};
    double      视图参考点[2] = { 4.0, 4.0};
	int         制图单位=2;//1 =英制,2 =公制
	int         图纸页尺寸=5;//0 =自定义尺寸、1 = A / A0、2 = B / A1、3 = C / A2、4 = D / A3、5 = E / A4、6 = F / -、7 = H / -、8 = J / -

    /* 创建一个新的图纸页 */
    UF_CALL( uc6478( 图纸页名称, 1, 图纸页尺寸, &图纸尺寸));

    /* 将视图添加到图纸页 */
    UF_CALL( uc6481( 图纸页名称, 视图名称字符串, 视图参考点, 1));

    UF_CALL( UF_DRAW_ask_current_drawing( &图纸页TAG));

    /* 添加局部视图 */
    UF_CALL( uc6499( 图纸页名称, 视图名称));
    /* 从视图名称获取视图TAG */
    UF_CALL( UF_OBJ_cycle_by_name( 视图名称, &视图TAG));

    UF_CALL( UF_DRAW_add_detail_view( 图纸页TAG, 视图TAG, 视图左下角基点坐标,
            视图右上角基点坐标, 视图比例, 绘图参考点, &新细节视图));

}

void ufusr(char *param, int *retcode, int paramLen)
{
    if (UF_CALL(UF_initialize())) return;
    do_it();
    UF_terminate();
}

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

————————————————————————————

Simens_NX免安装使用教程(免安装通用视频)

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

YANGJEE

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值