PLM之家PLMHome-工业软件与AI结合践行者

[二次开发源码] NX二次开发源码分享: 创建精确外轮廓

[复制链接]

2019-1-17 10:56:35 2265 0

admin 发表于 2019-1-17 10:56:35 |阅读模式

admin 楼主

2019-1-17 10:56:35

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

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

x
NX二次开发源码分享: 创建精确外轮廓0 H, j( P  U: P2 U/ @8 P* m% {# ^
! R( K# }  e7 p- c* j. I3 u+ m
UF_CURVE_create_shadow_outline (view source)
% L/ G( B6 I4 h2 H" Z* X 0 r; T1 }. {- ~' G- [
Defined in: uf_curve.h
0 ^! D- Z& P5 }2 R
& H, Z0 A. `4 Y7 ]6 c  Z4 y
% A5 J( @3 I7 q* Q) r" h) K& BOverview0 [7 \0 G) R, h1 U$ H% t

5 q: Q9 m/ @3 BCreate shadow outline for a given array of solids. Solids passed to this 1 _1 e0 ^' i2 S
routine must be on a selectable layer and visible. If created shadow curves 7 I$ f9 ~( X) N$ h$ @5 t8 {+ ?
can not form loops, please use UF_CURVE_create_shadow_curves instead to get
+ \1 \% D9 Y2 ~% n; Sshadow curves. 5 j: k6 |/ U* p# X
; r6 j* |8 |4 |+ b
& y# G  H4 t2 \) Q3 s6 j" V. f3 o
[hide]8 E; l8 P" u& V& ^2 R# }/ y$ `

  r; g5 T9 O3 K+ f5 E' g[mw_shl_code=csharp,true] void DoIt()
2 Q$ x, q" F2 s- R& j" T& H3 {& G, R    {. a0 V( _; k7 @1 `) J
        if (theSession.Parts.Display != theSession.Parts.Work)0 l+ |, W$ w: L
            theSession.Parts.SetWork(theSession.Parts.Display);
0 g( Q9 \5 K/ r- F
0 e! u0 k$ t- \2 L$ }, R: Q7 W5 }8 O8 C; B1 S' T5 h/ R# ?( @
        TaggedObject[] theBodies = null;9 s# o0 g, |) _3 j
        if (SelectBodies("Select Bodies", ref theBodies) == Selection.Response.Ok)7 k. ^% `$ H1 q
        {
8 J. ^+ W/ k  n1 w            Echo("Selected Bodies: " + theBodies.Length.ToString());
8 H( f6 N, o$ V            Tag[] theBodyTags = new Tag[theBodies.Length];
! @3 b  ]2 m3 c6 P( k* D            for (int ii = 0; ii < theBodies.Length; ii++)
1 L4 X  Z( ~6 R! ]' d6 K1 i                theBodyTags[ii] = theBodies[ii].Tag;9 J0 H2 P" p* V

" r' N* r' j- [) r( A& h5 p$ W            List<Curve> theOutlineCurves = new List<Curve>();
+ r2 w8 r: `7 B) Q: g( x/ }            ModelingView workView = theSession.Parts.Work.ModelingViews.WorkView;
$ ~" g2 L! A" e  u, {# t$ k0 j            int loop_count;
3 D, ?* c* M1 R1 T+ S& t            int[] count_array;
$ T1 Z% n7 c7 c# k" f/ e            Tag[][] curve_array = null;
) p# ]- ]3 u" U, H- O            double[] tol = new double[2];
3 e7 H  N  ^5 W& e* s/ U- g2 R3 b$ N- l
            theUFSession.Modl.AskDistanceTolerance(out tol[0]);* w* X0 z  x0 q. f  I+ c
            theUFSession.Modl.AskAngleTolerance(out tol[1]);
2 w0 E. i- h3 M; F6 K
" b1 a; a7 q0 o; D            theUFSession.Curve.CreatePreciseOutline(theBodyTags.Length, theBodyTags,! Q  h) }/ q: I# k( c
                workView.Tag, out loop_count, out count_array, out curve_array, tol);7 H8 F4 u4 T) f* |3 v; o. o% D3 R- O# i
# R/ R: X. K1 Y. h7 d' j+ A
            Echo("Precise Outline Loops: " + loop_count.ToString());( n! c2 g2 \7 M1 m1 w  [: H$ G  O+ t8 \
            for (int ii = 0; ii < loop_count; ii++)" j0 D. ^- u- [/ I+ v$ D6 @  ]
                for (int jj = 0; jj < count_array[ii]; jj++)
7 n" R9 \" f; K                    theOutlineCurves.Add((Curve)NXOpen.Utilities.NXObjectManager.Get(curve_array[ii][jj]));
3 S, ^4 d+ ^6 c1 F* C9 @/ C) S            Echo("Precise Outline Curves: " + theOutlineCurves.Count.ToString());
, B9 m" c7 j3 O3 q
2 O+ H5 M8 v0 T( R* c5 `            /* If created outline curves can not form loops, use UF_CURVE_create_precise_outline_curves instead * e' x4 w1 {& z4 B  z; `& U
            int curve_count;- g( i, s6 r$ }2 E& {. y
            Tag[] outline_curves = null;+ Q3 i% X8 m2 W. E! ?6 h2 D0 l
            theUFSession.Curve.CreatePreciseOutlineCurves(theBodyTags.Length, theBodyTags,
% \) s5 `, h$ s; y/ _                workView.Tag, out curve_count, out outline_curves);
. A1 x9 M# D# h6 |            Echo("Precise Outline Curves: " + curve_count.ToString());/ `' R$ l  k( H! T) b; w
            */" i+ T# u7 f$ x. o0 g
        }
5 H/ j( U2 r/ o! v7 |5 e
8 i7 u( w, f7 Z# ?; `' _. ?    }[/mw_shl_code]
( ~5 c# x1 q, l" d  o4 ~& z[/hide]
# x) \: m0 W6 Z9 h6 W1 M* `
上海点团信息科技有限公司,承接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二次开发专题模块培训报名开始啦

    我知道了