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

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

[复制链接]

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

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

admin 楼主

2019-1-17 10:56:35

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

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

x
NX二次开发源码分享: 创建精确外轮廓
5 f6 Q  v6 C4 O6 f6 k5 K9 l8 O2 L: C+ {- L" X* B
UF_CURVE_create_shadow_outline (view source)) A  C. d# o  V- Q4 `, y) |+ e* ]0 `

3 j! s% }! Z/ c0 w5 g9 vDefined in: uf_curve.h: h" v: v, E9 x8 r$ ^* L( ~: \; m: m

' Z( l/ q& b  R, u1 [' ]% s; @6 G) L  A' E$ x
Overview
9 I3 ^1 }- o3 ~( f
: e+ H! e# }. n# t1 oCreate shadow outline for a given array of solids. Solids passed to this ! k) }" J0 y1 h7 }1 T8 e% j8 l/ {
routine must be on a selectable layer and visible. If created shadow curves
& F1 E& G. M3 y6 |4 w  o6 Ecan not form loops, please use UF_CURVE_create_shadow_curves instead to get
; @8 @5 Z9 q, P1 D! P3 Y; R8 qshadow curves. % p, Y. i$ H9 [# r2 [" }8 T( o% M

8 E; g8 C4 `8 U1 m1 b* V) {1 M& b4 L2 s
[hide]
  \' K6 |( \/ Y! K0 r# _' x4 G/ @1 l$ K; L" J
[mw_shl_code=csharp,true] void DoIt()
/ a$ q7 G/ E' O* e) M    {
0 P2 {# p) E9 d. \        if (theSession.Parts.Display != theSession.Parts.Work)0 R& V+ U* o: `  u- Z9 S( A
            theSession.Parts.SetWork(theSession.Parts.Display);
9 E8 e7 n- ^4 d; h1 v$ C" B4 P
- V) I1 `' r4 j1 T; g  t( t: H, j! t9 d
        TaggedObject[] theBodies = null;
6 o2 q8 p- n4 m* f2 @        if (SelectBodies("Select Bodies", ref theBodies) == Selection.Response.Ok)
/ U- _& b, j, N* g        {7 Q; ?+ a( K, Z2 s1 y
            Echo("Selected Bodies: " + theBodies.Length.ToString());
4 S+ @& b' L' S. A1 x& ^            Tag[] theBodyTags = new Tag[theBodies.Length];
. Z4 ]4 _' b/ ?- h3 X3 |' k            for (int ii = 0; ii < theBodies.Length; ii++)
& u% p. B1 _- x) p- G' c5 Q* Q% w1 o                theBodyTags[ii] = theBodies[ii].Tag;# @; [" K/ J$ `( W& y$ ?9 ^& y0 P

( v1 _: C7 ~! }            List<Curve> theOutlineCurves = new List<Curve>();8 B6 c# ~8 q+ s6 N1 m+ n9 q
            ModelingView workView = theSession.Parts.Work.ModelingViews.WorkView;
; i- G! k( J" m6 e% S6 X. I            int loop_count;  ]: L0 f( Z1 A$ |/ M: q
            int[] count_array;
- ?- Y1 K# y" j0 I' y5 [/ u; t1 l            Tag[][] curve_array = null;3 S+ T0 }& \; k# H$ Z
            double[] tol = new double[2];
" i7 j5 ^9 L+ p' ?' C, r* A; ^% M6 z( u, w1 B5 E# V1 T
            theUFSession.Modl.AskDistanceTolerance(out tol[0]);1 e, u7 v2 @( S  P  R7 K
            theUFSession.Modl.AskAngleTolerance(out tol[1]);
' O2 _# _- d$ V! ~3 f0 a. n$ }  R, r& W. R% C2 |0 f  ^* S
            theUFSession.Curve.CreatePreciseOutline(theBodyTags.Length, theBodyTags,
: D* s& a6 h1 @& V0 b% \                workView.Tag, out loop_count, out count_array, out curve_array, tol);  p3 i+ {; }. N6 L5 }  H$ ?
6 m' A/ r( c2 O4 R
            Echo("Precise Outline Loops: " + loop_count.ToString());
( G6 l/ j# q5 x* F            for (int ii = 0; ii < loop_count; ii++)
3 s& n9 u. Y7 r/ \/ }                for (int jj = 0; jj < count_array[ii]; jj++); q0 r1 y' x7 H. m
                    theOutlineCurves.Add((Curve)NXOpen.Utilities.NXObjectManager.Get(curve_array[ii][jj]));# Q/ ?% l8 ]5 \5 }+ v% {
            Echo("Precise Outline Curves: " + theOutlineCurves.Count.ToString());7 Q( G  e0 \1 {- D: b' h  a

% b- A% B8 J$ K; ?- a            /* If created outline curves can not form loops, use UF_CURVE_create_precise_outline_curves instead 8 m& h$ \/ T9 \( }$ a4 l
            int curve_count;+ o# O6 f  ?1 V; k" v
            Tag[] outline_curves = null;
: X5 }1 l! G2 }- e/ z' x9 t8 B            theUFSession.Curve.CreatePreciseOutlineCurves(theBodyTags.Length, theBodyTags,
6 K3 H7 e* s( K$ t                workView.Tag, out curve_count, out outline_curves);
5 ^2 X; _6 w$ ?5 b4 c1 O            Echo("Precise Outline Curves: " + curve_count.ToString());5 m" P. I" _# [4 |; u6 g0 x
            */0 b: a/ _4 `' q2 a( p/ w; @
        }
# \* H& R! k8 ]1 _0 E, f
* ]& C% K2 _$ j; _/ c. V    }[/mw_shl_code]
) [. u$ N; x' S" D4 L7 `[/hide]2 Q& N, G* P) d* i+ ^4 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二次开发专题模块培训报名开始啦

    我知道了