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

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

[复制链接]

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

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

admin 楼主

2019-1-17 10:56:35

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

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

x
NX二次开发源码分享: 创建精确外轮廓
- o. ^' \' D5 A
. k5 p1 c$ h* {' B* O5 pUF_CURVE_create_shadow_outline (view source)5 D) d4 B3 n# v: r& k8 S: H

, N8 b" i9 ?, eDefined in: uf_curve.h
3 r+ p. D7 m1 B/ M0 ^  F0 _ ) b3 f3 I* I2 f5 M) Y- U  P
6 j5 v2 H0 h- @. B: r
Overview
  B( i7 C" r3 Q/ [6 E, F  `8 C! ]- B% ?& u. S2 r2 _. L1 S( R
Create shadow outline for a given array of solids. Solids passed to this
* J9 R/ w' E& u7 Lroutine must be on a selectable layer and visible. If created shadow curves ( @/ y* q  N( t- R2 B* ^4 o, a: n
can not form loops, please use UF_CURVE_create_shadow_curves instead to get - v) r0 n, S6 L* N, R6 r: I
shadow curves. " X. M* y: d+ Z
) c! e8 d$ ^9 L" z7 ~9 T
7 K5 n1 m7 y6 `) N3 I  G' _8 J+ Q! H
[hide]3 G6 r2 x5 f" B9 }

' `1 w# o3 E& A4 c1 M- g  ][mw_shl_code=csharp,true] void DoIt()- S  \# u4 G( x4 J2 s) w8 [; D
    {
; R- I+ {, m/ S/ R6 b9 U        if (theSession.Parts.Display != theSession.Parts.Work); T6 h9 R* T$ P+ X) O
            theSession.Parts.SetWork(theSession.Parts.Display);6 ~5 ^2 M" m; ]' m; `
2 k$ A' S" e. j( @
6 @% f4 g4 f, T3 k- Z
        TaggedObject[] theBodies = null;2 r/ }& G% A7 U* f4 j" T) v
        if (SelectBodies("Select Bodies", ref theBodies) == Selection.Response.Ok)3 E, d4 F5 K1 m
        {
( ^% k) y" Y+ s6 p! L5 c9 h2 @            Echo("Selected Bodies: " + theBodies.Length.ToString());% q7 W1 e2 q; K5 V: R
            Tag[] theBodyTags = new Tag[theBodies.Length];$ R/ j4 U  ]* C, @
            for (int ii = 0; ii < theBodies.Length; ii++)
- {5 O, y' T6 k8 @; e  Q+ \; ?2 v                theBodyTags[ii] = theBodies[ii].Tag;) @- J% U1 A& c
- \( g$ l# K5 V4 l+ I) U
            List<Curve> theOutlineCurves = new List<Curve>();0 t0 }/ m* _# X9 N; v0 X, K) M4 ~
            ModelingView workView = theSession.Parts.Work.ModelingViews.WorkView;
" E% `' `) u' U2 w$ w: x2 |" P            int loop_count;/ w/ o/ ?1 e3 X! [6 M
            int[] count_array;
* Y" ^! A% }5 j  v" a$ t3 e: ^4 @            Tag[][] curve_array = null;
- F9 d3 z& b8 w- \' L9 ^            double[] tol = new double[2];% X4 o& m, D1 Q% N& y
% S6 S0 {. M0 x# Q- {2 |2 x
            theUFSession.Modl.AskDistanceTolerance(out tol[0]);4 A9 @4 `& {2 T2 Z$ {
            theUFSession.Modl.AskAngleTolerance(out tol[1]);2 D% j, M: y* O+ k4 s( S: L
5 x! |# d6 c8 U3 a$ g
            theUFSession.Curve.CreatePreciseOutline(theBodyTags.Length, theBodyTags,
8 @/ c0 l0 ~$ S( @1 `6 y$ G                workView.Tag, out loop_count, out count_array, out curve_array, tol);
& a1 {  R5 A; X& {, u6 S1 r8 W- Q- u) g5 B
            Echo("Precise Outline Loops: " + loop_count.ToString());
7 O0 {  i' \5 k$ Y6 X            for (int ii = 0; ii < loop_count; ii++)
, X* ?& g: S3 g1 |                for (int jj = 0; jj < count_array[ii]; jj++)3 C* s* l0 S9 T2 |
                    theOutlineCurves.Add((Curve)NXOpen.Utilities.NXObjectManager.Get(curve_array[ii][jj]));
, M. m) h$ ~' s7 @            Echo("Precise Outline Curves: " + theOutlineCurves.Count.ToString());! e9 i/ r. ]! N( E* \5 t

0 B, `1 B9 A/ J6 h; A5 X            /* If created outline curves can not form loops, use UF_CURVE_create_precise_outline_curves instead
' V. \! J5 Q9 D" A" C/ R- z            int curve_count;
5 Y4 \9 T. @% g/ N7 Z3 W9 e            Tag[] outline_curves = null;" o* J/ y7 i% V, N6 m( [( |
            theUFSession.Curve.CreatePreciseOutlineCurves(theBodyTags.Length, theBodyTags, - W' ?( _0 w1 z  j
                workView.Tag, out curve_count, out outline_curves);
! R( d/ @9 ^& t  Q            Echo("Precise Outline Curves: " + curve_count.ToString());
) u& Q' t, F/ A* G) {            */! f6 [: T5 h* i& Y& L: i
        }6 U2 D; r4 Q  g; q
9 j6 v2 }  v, D( }$ }! N6 B
    }[/mw_shl_code]) M8 E1 J5 L4 U6 e- d. z
[/hide]
& i& ^6 g6 B4 l& d" q
上海点团信息科技有限公司,承接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二次开发专题模块培训报名开始啦

    我知道了