PLM之家PLMHome-国产软件践行者

[二次开发源码] NX二次开发中有关表达式的操作代码分享

[复制链接]

2013-11-27 10:03:27 3591 0

admin 发表于 2013-11-27 10:03:27 |阅读模式

admin 楼主

2013-11-27 10:03:27

请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!

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

x
NX二次开发中有关表达式的操作代码分享, ]& e; y/ E4 x. Q5 l# l

4 B! W/ F2 R& ^4 h9 I
  1. : O# H9 @$ z& z3 [
  2. <p>static void do_UGopen_api(void)2 @( p' w2 a5 z2 z5 z" ~# ~' N
  3. {7 _$ q  s( V% I  }
  4. // create block 1
    . j" K. G4 s: N( P  l; p+ a; r# D
  5. double coner[3] = {0,0,0};
    7 v2 i5 E, Z: [* I, r/ d
  6. char *edges[3] = {"l=100","w=100","h=20"};  B" f8 \2 U. r' Q+ d5 K5 r
  7. tag_t blk_tag;1 S$ Z1 M5 w: N7 [$ x) b5 h
  8. UF_MODL_create_block1(UF_NULLSIGN,coner,edges,&blk_tag);1 V$ V( F6 \+ p" K' ^
  9. // create a hole0 b: d  A7 K. q: v- g/ z; c  @
  10. double dir[3] = {0,0,1};
    6 [3 ~0 v/ G, A) `5 A
  11. double coner1[3] = {50,50,0};
    , m2 i$ D9 g& ?2 ~" f6 u
  12. tag_t cyl_tag;, ~$ X5 ~: P5 e5 C
  13. UF_MODL_create_cyl1(UF_POSITIVE,coner1,"h+30","50",dir,&cyl_tag);</p><p> /*
    7 i- _- F  H& d3 k( e. i8 F
  14. create expression and delete it; X( x, B4 N: V3 }; w
  15. */
    3 ?8 O! z# [. d  `  v- Y
  16. // create expression6 Z: T$ y; j1 d9 d! o7 n) b; ^5 x2 k
  17. char *exp_str,*str,*value;/ _9 U3 i7 Z7 z6 h% B! W" E& q
  18. exp_str = "new_exp= 100";: o( J2 G4 p! t; `- X
  19. tag_t new_exp,old_exp_tag;
    % {( H& n8 b$ b4 Y0 r6 |
  20. char *str_exp,*str_old_exp;9 q: W, h" S. ?# k
  21. int nums;% n& l; z9 v! b; L$ x/ j) Y
  22. tag_t *exps;
    - R3 k9 y) c: p( A7 E
  23. // before create the new expression, we need check if the expressions have been created or not
    : X! U# ?* j6 b( @0 F8 \! v/ Y
  24. // if having, we delete it
    0 U: c3 A+ b# k5 ?% Z
  25. tag_t part= UF_PART_ask_display_part();
    ' ]3 u' Z9 \9 Q1 W
  26. UF_MODL_ask_exps_of_part(part,&nums,&exps);# U2 d9 `7 K7 L- |" c% `
  27. UF_UI_open_listing_window();. ]" h! b9 P0 g+ {7 J
  28. if(nums != 0 )
    , `5 ]& ?6 U- V! p# I6 n  g
  29. {$ a# Q7 ~% [- b+ x; [
  30.   for(int i = 0 ; i < nums; i++): O* i/ D  O& P! `1 T  ~
  31.   {8 v: x3 i7 D/ g" }
  32.    UF_MODL_ask_exp_tag_string(exps[i],&str_old_exp);
    # S" {; y2 h5 m( E( G
  33.    UF_MODL_dissect_exp_string(str_old_exp,&str,&value,&old_exp_tag);- J" ^0 H* P' J* J# K
  34.    if(!strcmp(str,"new_exp"))
    2 U$ ?* T" v: o! {1 `
  35.    {7 D* t0 G+ R6 A( R' c
  36.      //UF_UI_write_listing_window("we find the alreay expressions ==> new_exp and delete it \n");
    " A  Q, g+ a) [- o) [; a7 G4 x  S+ [
  37.      //delete expression4 K8 R, T. p# p7 I) @2 y
  38.      UF_MODL_delete_exp(str);
    5 v, r. ?7 l5 _# e# {
  39.      UF_MODL_update();
    , ?+ u7 I0 K! h% Y$ Q; k
  40.      break;: Q/ g1 l5 j, @* v; `5 p( @4 o
  41.    }8 g5 r" M+ ?5 J8 ]9 n" l; b' w" |1 p0 h
  42.   }( H& U* a4 _/ p9 h# X& f
  43. }
    : h7 P9 U/ b( D( f) P8 T% k: L
  44. //UF_UI_write_listing_window("we can not find the expression ==> new_exp and create it \n");+ ?0 a% }( u; p
  45. UF_MODL_create_exp_tag(exp_str,&new_exp);" K0 A1 V( {0 k1 \4 c4 U3 A
  46. UF_UI_write_listing_window("The new created expression is : \n");
    : A; I* k9 N5 A9 s- E2 a1 j
  47. UF_MODL_ask_exp_tag_string(new_exp,&str_exp);
    , v; W! m) D9 Q# X0 S
  48. UF_UI_write_listing_window(str_exp);1 Y+ \1 F: z0 I0 @
  49. UF_free(str_exp);, z+ q. Z. b) J0 c: f
  50. UF_free(str);
    5 s$ v) b+ l" R6 K4 b5 m1 W* S1 @- @9 |
  51. UF_free(value);3 z( a  m. i& L; H. \% g' Q* ?
  52. UF_UI_write_listing_window("\n");</p><p>}</p>
复制代码

  `+ }6 g" K0 ~  H
上海点团信息科技有限公司,承接UG NX,CATIA,CREO,Solidworks 等CAx软件,Teamcenter,3D Experience等PLM软件,工业4.0数字化软件的实施\二次开发\培训相关业务,详情QQ 939801026 Tel 18301858168 网址 doTeam.tech
回复

使用道具 举报

发表回复

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

返回列表 本版积分规则

  • 发布新帖

  • 在线客服

  • 微信

  • 客户端

  • 返回顶部

  • x
    温馨提示

    本网站(plmhome.com)为PLM之家工业软件学习官网站

    展示的视频材料全部免费,需要高清和特殊技术支持请联系 QQ: 939801026

    PLM之家NX CAM二次开发专题模块培训报名开始啦

    我知道了