博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NXOpen创建基准面和实体的交线(合并交线)
阅读量:5236 次
发布时间:2019-06-14

本文共 1160 字,大约阅读时间需要 3 分钟。

   /// <summary>

        /// 创建基准面和实体的交线(合并交线)
        /// </summary>
        /// <param name="body"></param>
        /// <param name="dPlane"></param>
        /// <param name="iCurve"></param>
        public void CreateIntersectionCurveOfBodyAndDatumPlane(Body body, DatumPlane dPlane, out Curve iCurve)
        {
            try
            {
                NXOpen.Features.Feature nullFeatures_Feature = null;

                NXOpen.Features.SectionCurveBuilder sectionCurveBuilder1;

                sectionCurveBuilder1 = workPart.Features.CreateSectionCurveBuilder(nullFeatures_Feature);

                sectionCurveBuilder1.Associative = true;

                sectionCurveBuilder1.Tolerance = 0.0254;
                sectionCurveBuilder1.CurveFitJoinOptions.CurveJoinMethod = NXOpen.GeometricUtilities.CurveFitJoin.JoinMethod.Genernal;
               
                bool added1;
                added1 = sectionCurveBuilder1.ObjectsToSection.Add(body);

                bool added2;

                added2 = sectionCurveBuilder1.SectionPlanes.Add(dPlane);

                NXObject nXObject1;

                nXObject1 = sectionCurveBuilder1.Commit();

                iCurve = (Curve)((SectionCurve)nXObject1).GetEntities()[0];

                sectionCurveBuilder1.Destroy();

            }

            catch (Exception ex)
            {
                UI.GetUI().NXMessageBox.Show("Message", NXMessageBox.DialogType.Error, ex.Message);
                iCurve = null;
            }
        }

转载于:https://www.cnblogs.com/yyFisheep/archive/2012/08/02/2620171.html

你可能感兴趣的文章
P3950 部落冲突 树链剖分
查看>>
读书_2019年
查看>>
读书汇总贴
查看>>
微信小程序 movable-view组件应用:可拖动悬浮框_返回首页
查看>>
MPT树详解
查看>>
空间分析开源库GEOS
查看>>
RQNOJ八月赛
查看>>
前端各种mate积累
查看>>
jQuery 1.7 发布了
查看>>
Python(软件目录结构规范)
查看>>
Windows多线程入门のCreateThread与_beginthreadex本质区别(转)
查看>>
Nginx配置文件(nginx.conf)配置详解1
查看>>
linux php编译安装
查看>>
name phone email正则表达式
查看>>
721. Accounts Merge
查看>>
「Unity」委托 将方法作为参数传递
查看>>
重置GNOME-TERMINAL
查看>>
redis哨兵集群、docker入门
查看>>
hihoCoder 1233 : Boxes(盒子)
查看>>
oracle中anyData数据类型的使用实例
查看>>