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

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

[复制链接]

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

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

admin 楼主

2019-1-17 10:56:35

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

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

x
NX二次开发源码分享: 创建精确外轮廓
. r* Z2 h# \. Q1 [, Q2 m0 [) J& x
, W/ K) G; f! e- Z! W+ wUF_CURVE_create_shadow_outline (view source)% L* z" C) a+ |4 b

0 W3 ^+ W/ d3 A" |9 Z8 JDefined in: uf_curve.h
# A9 O/ |% A& Q6 x
9 ]6 B2 N0 S3 g
1 o! i% u9 b& H! C) OOverview; W; T; \0 r& j+ h0 X/ K7 M
1 o) Y9 R9 J! O+ S" N' `( n! M
Create shadow outline for a given array of solids. Solids passed to this
' F$ G+ q& V' E( d* C7 L3 v  droutine must be on a selectable layer and visible. If created shadow curves 9 U7 s$ A( L8 J# i
can not form loops, please use UF_CURVE_create_shadow_curves instead to get & s! X6 h: ]- V' p
shadow curves. $ o! Q8 D& ]- K, N  s; q6 N
# H' d( p; Y1 T5 Y5 I/ \
+ L" T7 c: Q0 i/ p# I
[hide]
) b1 Q) N3 v9 u) I8 O$ t# `1 v1 [% [) D6 y2 _
[mw_shl_code=csharp,true] void DoIt()
' }+ L$ I, V, Y& U! @" m5 U    {
5 j6 @9 U- |9 q# ~3 U0 ^: b7 v        if (theSession.Parts.Display != theSession.Parts.Work)
* l( [; e& O3 L  r/ l9 K            theSession.Parts.SetWork(theSession.Parts.Display);( I, V8 ]% h) W  E( D8 o' V4 n! [$ w
& U& P1 X( b$ D5 b1 _) ?. o
; K3 b2 A+ J  L7 b3 p7 T% L, ~
        TaggedObject[] theBodies = null;, y. }% e7 S) k9 Z& {' }7 p0 K
        if (SelectBodies("Select Bodies", ref theBodies) == Selection.Response.Ok)
% n& P  r2 R1 D: G$ }( Y# m0 y        {% y4 m/ W5 g) V% U7 g4 O# m4 {
            Echo("Selected Bodies: " + theBodies.Length.ToString());
1 G  n- x: ]3 L0 O. C# o6 i            Tag[] theBodyTags = new Tag[theBodies.Length];
6 e& z) u2 _" ^1 f            for (int ii = 0; ii < theBodies.Length; ii++)1 l% Q5 \7 N1 z
                theBodyTags[ii] = theBodies[ii].Tag;
+ r6 p  k: f6 J+ X
% r3 @' Y+ I0 J            List<Curve> theOutlineCurves = new List<Curve>();
. \; {0 A6 _1 J' g$ Q- c            ModelingView workView = theSession.Parts.Work.ModelingViews.WorkView;$ U) w+ X% H6 c& t1 v# x% R% W
            int loop_count;5 P% t2 v; |9 A, S3 h0 R4 ^
            int[] count_array;
, Y1 K. J* `, x. V1 G) B            Tag[][] curve_array = null;( c, O  }2 h; k) C3 E! O  G
            double[] tol = new double[2];& }/ e. ?5 V& g& h
! z( o; e3 t6 F. @9 z0 J! B
            theUFSession.Modl.AskDistanceTolerance(out tol[0]);  C( F, y; f4 n* f( T
            theUFSession.Modl.AskAngleTolerance(out tol[1]);
2 J; }' ]* ?: O0 m% @0 ]! n" _: m; B) u4 V
            theUFSession.Curve.CreatePreciseOutline(theBodyTags.Length, theBodyTags,9 Y  N5 P. a5 ], P) G3 [: S
                workView.Tag, out loop_count, out count_array, out curve_array, tol);! d. R3 z  X" H% H

! ]0 I7 X. X3 B7 c" S" _$ P; ~            Echo("Precise Outline Loops: " + loop_count.ToString());
- R* x9 ~, x: `9 f            for (int ii = 0; ii < loop_count; ii++)
' K( i2 E3 n* G6 `                for (int jj = 0; jj < count_array[ii]; jj++)9 ~# d; s( X# m/ {* ]
                    theOutlineCurves.Add((Curve)NXOpen.Utilities.NXObjectManager.Get(curve_array[ii][jj]));) O/ z2 `% h& x2 M" n6 f( X
            Echo("Precise Outline Curves: " + theOutlineCurves.Count.ToString());* X2 P' \9 m+ d$ j( c

9 F- G% }9 y! f& j: ~7 V% Q            /* If created outline curves can not form loops, use UF_CURVE_create_precise_outline_curves instead
* y2 A/ Q: P% U! n            int curve_count;
! P0 K, `) G" |3 n$ C! v* ]            Tag[] outline_curves = null;
* U) N2 v' U5 y* f- ^' z. s            theUFSession.Curve.CreatePreciseOutlineCurves(theBodyTags.Length, theBodyTags,
9 W% f3 i; t/ {* @  L5 Q* g                workView.Tag, out curve_count, out outline_curves);0 |% O8 ]4 \1 ?5 b, x' E3 f4 E$ K
            Echo("Precise Outline Curves: " + curve_count.ToString());
2 R3 C2 K* _8 r- W/ c! u4 w4 ?            */
9 X! Q. k* V5 l( U        }
5 H: J% @+ P& @0 Z/ P: l4 ?$ y& u$ [  r
    }[/mw_shl_code]  ?& o4 r, y  }# X* _
[/hide]% o1 b( b; g5 o4 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二次开发专题模块培训报名开始啦

    我知道了