找回密码 注册 QQ登录
一站式解决方案

iCAx开思网

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

[求助] 请教高高高手api简单干涉的函数是哪个,找了好久,谢天谢地谢谢您

[复制链接]
跳转到指定楼层
1
发表于 2010-12-11 21:46:56 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
请教高高高手api简单干涉的函数是哪个,找了好久,谢天谢地谢谢您!!!
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 赞一下!赞一下!
2
发表于 2010-12-12 09:46:56 | 只看该作者
UF_MODL_check_interference
这是检查干涉函数
下面是具体例子

#include <stdio.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    *edge_length[3] = {"5.0", "5.0", "5.0"};
  char    *prtnam = "check_interference";
  char    *dia = "3.0";
  char    *height = "10.0";
  
  double  cyl_dir[3] = {0.0, 0.0, 1.0};

  double  origin[3] = {0.0, 0.0, 0.0};

  int     num_tools;
  int     results[2];
        
  tag_t   target;
  tag_t   tools[2];
  tag_t   feat_tag;
  tag_t   part_tag;

  UF_FEATURE_SIGN create = UF_NULLSIGN;
  

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

  /* Create a block of dimensions 5, 5, 5 */
  UF_CALL(UF_MODL_create_block1(create, origin, edge_length, &feat_tag));
  UF_CALL(UF_MODL_ask_feat_body(feat_tag, &target))   ;

  /* Create a cylinder */
  UF_CALL(UF_MODL_create_cyl1(create, origin, height, dia, cyl_dir, &feat_tag));
  UF_CALL(UF_MODL_ask_feat_body(feat_tag, &tools[0]));
  
  /* Create another cylinder not intersecting block */
  origin[0] = 10.0;
  origin[1] = 0.0;
  origin[2] = 0.0;
  UF_CALL(UF_MODL_create_cyl1(create, origin, height, dia, cyl_dir, &feat_tag));
  UF_CALL(UF_MODL_ask_feat_body(feat_tag, &tools[1]));
  
  /* check interference of the tool bodies against the target */
  num_tools = 2;
  UF_CALL(UF_MODL_check_interference( target, num_tools, tools, results ));
  
  if (results[0] != 1 || results[1] != 2)
     printf("*** ERROR from UF_MODL_check_interference ***\n");
  

}

/*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);
}
3
发表于 2010-12-12 20:03:33 | 只看该作者
哦,原来是UF_MODL_check_interference,我试试,请问兄弟这个例子是从帮助文件中找的吗还是有什么好书?
头像被屏蔽
4
发表于 2010-12-13 14:13:13 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2025-1-31 12:46 , Processed in 0.023965 second(s), 10 queries , Gzip On, Redis On.

Powered by Discuz! X3.3

© 2002-2025 www.iCAx.org

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