找回密码 注册 QQ登录
开思网工业级高精度在线3D打印服务

iCAx开思网

CAD/CAM/CAE/设计/模具 高清视频【积分说明】如何快速获得积分?快速3D打印 手板模型CNC加工服务在线3D打印服务,上传模型,自动报价
查看: 16518|回复: 4
打印 上一主题 下一主题

创建长方体在ug中无法显示

[复制链接]
跳转到指定楼层
1
发表于 2005-12-8 17:25:10 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多同行朋友,交流,分享,学习。

您需要 登录 才可以下载或查看,没有帐号?注册

x
我写了一个创建长方体的函数,但是在ug里面调用的时候没有出现长方体
怎么回事啊?能够编译通过

函数如下:
#include <uf.h>
#include <uf_exit.h>
#include <uf_ui.h>
#include <uf_modl_error.h>
#include <uf_modl_types.h>
#include <uf_modl.h>
#if ! defined ( __hp9000s800 ) && ! defined ( __sgi ) && ! defined ( __sun )
#        include <strstream>
#   include <iostream>
        using std:strstream;
        using std::endl;       
        using std::ends;
        using std::cerr;
#else
#        include <strstream.h>
#   include <iostream.h>
#endif
#include "creatPart.h"

//----------------------------------------------------------------------------
//  Activation Methods
//----------------------------------------------------------------------------

//  Unigraphics Startup
//      This entry point activates the application at Unigraphics startup
extern "C" DllExport void ufsta( char *param, int *returnCode, int rlen )
{
    /* Initialize the API environment */
    int errorCode = UF_initialize();

    if ( 0 == errorCode )
    {
        /* TODO: Add your application code here */
               


               
        /* Terminate the API environment */
        errorCode = UF_terminate();
    }

    /* Print out any error messages */
    PrintErrorMessage( errorCode );
}

//----------------------------------------------------------------------------
//  Utilities
//----------------------------------------------------------------------------

// Unload Handler
//     This function specifies when to unload your application from Unigraphics.
//     If your application registers a callback (from a MenuScript item or a
//     User Defined Object for example), this function MUST return
//     "UF_UNLOAD_UG_TERMINATE".
extern "C" int ufusr_ask_unload( void )
{
    return( UF_UNLOAD_UG_TERMINATE );
}

/* PrintErrorMessage
**
**     Prints error messages to standard error and the Unigraphics status
**     line. */
static void PrintErrorMessage( int errorCode )
{
    if ( 0 != errorCode )
    {
        /* Retrieve the associated error message */
        char message[133];
        UF_get_fail_message( errorCode, message );

        /* Print out the message */
        UF_UI_set_status( message );

        // Construct a buffer to hold the text.
        ostrstream error_message;

        // Initialize the buffer with the required text.
        error_message << endl
                      << "Error:" << endl
                      << message
                      << endl << endl << ends;

            // Write the message to standard error
        cerr << error_message.str();
    }
}
static void do_ugOPen_api(void)
                {
                        UF_FEATURE_SIGN sign = UF_NULLSIGN;
                        UF_FEATURE_SIGN sign1=UF_POSITIVE;
                        double block_orig[3]={0.0,0.0,0.0};
                        double block_orig1[3]={0.0,0.0,2.5};
                        char *block_len[3]={"1","2","3"};
                        char *block_len1[3]={"1","1","1"};
                        tag_t blk_obj;
                        tag_t blk1_obj;
                        int i_ret;
                        //新建长方体
                        i_ret=UF_MODL_create_block(sign,NULL,block_orig,block_len,&blk_obj);
                        i_ret=UF_UI_open_listing_window( );
                        if(i_ret==0)
                                UF_UI_write_listing_window("成功创建block\n");
                        else
                        {
                                UF_UI_write_listing_window("创建block失败\n");
                                return;
                        }
                        //创建长方体,并与blk_obj长方体进行并操作
                        i_ret=UF_MODL_create_block1(sign1,block_orig1,block_len1,&blk1_obj);
                        if(i_ret==0)
                                UF_UI_write_listing_window("成功创建block\n");
                        else
                        {
                                UF_UI_write_listing_window("创建block失败\n");
                                return;
                        }

               
                }
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 赞一下!赞一下!
2
发表于 2005-12-9 18:21:29 | 只看该作者

马上注册,结交更多同行朋友,交流,分享,学习。

您需要 登录 才可以下载或查看,没有帐号?注册

x
3
发表于 2005-12-13 10:31:56 | 只看该作者

马上注册,结交更多同行朋友,交流,分享,学习。

您需要 登录 才可以下载或查看,没有帐号?注册

x
4
发表于 2006-1-15 23:38:23 | 只看该作者

马上注册,结交更多同行朋友,交流,分享,学习。

您需要 登录 才可以下载或查看,没有帐号?注册

x
5
发表于 2006-6-27 17:18:40 | 只看该作者

马上注册,结交更多同行朋友,交流,分享,学习。

您需要 登录 才可以下载或查看,没有帐号?注册

x
您需要登录后才可以回帖 登录 | 注册

本版积分规则

3D打印手板模型快速制作服务,在线报价下单!

QQ 咨询|手机版|联系我们|iCAx开思网  

GMT+8, 2024-11-13 23:17 , Processed in 0.027022 second(s), 13 queries , Gzip On, Redis On.

Powered by Discuz! X3.3

© 2002-2024 www.iCAx.org

快速回复 返回顶部 返回列表