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

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

[复制链接]

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

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

admin 楼主

2019-1-17 10:56:35

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

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

x
NX二次开发源码分享: 创建精确外轮廓9 u9 u9 }( e$ S

; l/ z& ?. k. Q, O  g7 xUF_CURVE_create_shadow_outline (view source)1 k5 f: p8 U. n" K/ Q% e
9 O% s5 K" R6 d: M) x
Defined in: uf_curve.h3 j$ |. R/ H0 H& z) E( q! U$ P

1 _4 L5 Z3 s/ i0 W. v( |# p% K# c- |3 }% I2 U4 r3 @( c
Overview4 e; e5 d( ^7 l& G7 k8 h
4 m  c2 K, t) n2 g: [
Create shadow outline for a given array of solids. Solids passed to this
9 b- K- l. T# R- D+ A! qroutine must be on a selectable layer and visible. If created shadow curves 5 N: t: }: r# \
can not form loops, please use UF_CURVE_create_shadow_curves instead to get
  t; g1 ~; v/ t1 G! c) sshadow curves. * z/ |( a5 x; g0 a* u" h
( u: r2 d& A  ~6 p9 W) }" k
6 J0 M* F" \4 H
[hide]; t& {( y/ ?7 _. ~
/ u6 {" S4 M$ y( K( c7 X3 ~
[mw_shl_code=csharp,true] void DoIt()/ t- O( t0 n+ S8 T3 ?* v. D+ ]  D7 B
    {/ G( j) J& ]& Z% B) O9 w$ c
        if (theSession.Parts.Display != theSession.Parts.Work)
$ F6 ~/ A! ~1 M  c/ ~+ c            theSession.Parts.SetWork(theSession.Parts.Display);6 Q: q9 U1 d" Z- n. D, H- v4 B

$ D, o. {! j, b0 K* r( X# E7 b% ~' l/ Q3 B7 |
        TaggedObject[] theBodies = null;
# ^6 a7 f2 |* d        if (SelectBodies("Select Bodies", ref theBodies) == Selection.Response.Ok)0 P& ~  l  k% ?
        {' x% d$ E4 d# `) m
            Echo("Selected Bodies: " + theBodies.Length.ToString());  a0 S( L6 y& B  I! ^* A
            Tag[] theBodyTags = new Tag[theBodies.Length];
/ [* ~- Y( y+ `2 |0 K% O4 w2 E            for (int ii = 0; ii < theBodies.Length; ii++)
6 f1 }; \- l2 X+ |2 R7 c# j                theBodyTags[ii] = theBodies[ii].Tag;
$ k5 \1 V  k( a- [" z  v& r# n9 Y& a7 @# c2 k) q2 o% F
            List<Curve> theOutlineCurves = new List<Curve>();5 E) J9 P1 E' U; p  q
            ModelingView workView = theSession.Parts.Work.ModelingViews.WorkView;
: r; v( v) U( e$ @8 [, i7 Z            int loop_count;
, y. b! y7 ]6 Q- b8 O/ P            int[] count_array;
) ]0 C9 w- A$ X  q; l: |            Tag[][] curve_array = null;
% S- c, f4 ^6 [; A5 Q/ |            double[] tol = new double[2];2 K* R# V  ?% Z0 X) W
7 j2 f( \- G1 F4 m7 h8 ?7 o9 W
            theUFSession.Modl.AskDistanceTolerance(out tol[0]);
% ]& Y7 R9 t3 z) v8 n            theUFSession.Modl.AskAngleTolerance(out tol[1]);
+ a7 K# U" Y! ~+ Y" P' X! }& i2 v/ {4 l
            theUFSession.Curve.CreatePreciseOutline(theBodyTags.Length, theBodyTags,
2 v$ {" Z8 O& y3 ]: A8 q( U4 T# p                workView.Tag, out loop_count, out count_array, out curve_array, tol);
/ {' r, J9 `/ |$ O$ @
, u  C6 u+ Y8 m# |$ g            Echo("Precise Outline Loops: " + loop_count.ToString());9 `( h5 P4 V: j9 O; z- Z
            for (int ii = 0; ii < loop_count; ii++)
) v  q& Y, l' r7 S                for (int jj = 0; jj < count_array[ii]; jj++)
  U! O6 u+ }$ E' q  h( R: a3 f                    theOutlineCurves.Add((Curve)NXOpen.Utilities.NXObjectManager.Get(curve_array[ii][jj]));
2 Y; |; D+ t' u! A" {+ u            Echo("Precise Outline Curves: " + theOutlineCurves.Count.ToString());. d' Q, ?! q) a9 D) g6 p

9 k: ~- W+ I' ]! z, N            /* If created outline curves can not form loops, use UF_CURVE_create_precise_outline_curves instead 7 r4 m) K6 [5 k* {  a" g9 l+ d' L
            int curve_count;0 Q  H4 |) x8 _- B: y, q: f
            Tag[] outline_curves = null;
' \! s* R6 `, u4 ^% Y            theUFSession.Curve.CreatePreciseOutlineCurves(theBodyTags.Length, theBodyTags,
6 r' g% p- ~, {- d+ U6 J                workView.Tag, out curve_count, out outline_curves);
; s1 E  p3 O1 {6 `0 ~            Echo("Precise Outline Curves: " + curve_count.ToString());$ V6 X# N" Y$ @$ n& ~3 o
            */4 o9 N+ E8 B( l" O! u! e& E1 D1 ?
        }% L$ z& m8 h* t
0 _8 r# @7 w& R6 x" M& ?; X
    }[/mw_shl_code]
: R! l9 e1 I& r$ {2 t4 P[/hide]2 x7 Y# O( g6 s
上海点团信息科技有限公司,承接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二次开发专题模块培训报名开始啦

    我知道了