UG NX 10 草图基准设置实战

一、小节概要

本实例实现了长方体边倒圆,主要知识点如下:

1、创建长方体  theUfSession.Modl.CreateBlock1

2、边倒圆 theUfSession.Modl.CreateBlend

二、需求分析

1、效果图

2、需求分解

1、创建长方体

2、创建边倒圆

三、程序分析

1、源码所在目录

UGOPEN\SampleNXOpenApplications\.NET\NXOpenExamples\EX_Modl_CreateBlend

2、主要功能分析

1、创建长方体

Tag block_feature_tag;string[] edge_lengths = { "1.0", "2.0", "3.0" };theUfSession.Assem.SetWorkPart(UFPart);corner_point[0] = 0.0;corner_point[1] = 0.0;corner_point[2] = 0.0;theUfSession.Modl.CreateBlock1(FeatureSigns.Nullsign, corner_point, edge_lengths, out block_feature_tag );

2、创建边倒圆

ArrayList arr_list2 = new ArrayList();for(int i=0; i < ecount; i++) {    Tag edge;               /* edge object */    int vcount;             /* count of vertices in edge */    /* Get the edge (list item) and check return code. */    theUfSession.Modl.AskListItem(list1,i,out edge);    /* Get the edge vertices. Check return code. */    theUfSession.Modl.AskEdgeVerts(edge,pt1, pt2, out vcount);    if(System.Math.Abs(System.Math.Abs(pt1[2] - pt2[2]) - 3.0) < 0.001)    {        arr_list2.Add(edge);    }}list2 = (Tag [])arr_list2.ToArray(typeof(Tag));theUfSession.Modl.CreateBlend("0.009246", list2, allow_smooth, allow_cliff, allow_notch, vrb_tol, out blend1);

免责声明:本文系网络转载或改编,未找到原创作者,版权归原作者所有。如涉及版权,请联系删

QR Code
微信扫一扫,欢迎咨询~

联系我们
武汉格发信息技术有限公司
湖北省武汉市经开区科技园西路6号103孵化器
电话:155-2731-8020 座机:027-59821821
邮件:tanzw@gofarlic.com
Copyright © 2023 Gofarsoft Co.,Ltd. 保留所有权利
遇到许可问题?该如何解决!?
评估许可证实际采购量? 
不清楚软件许可证使用数据? 
收到软件厂商律师函!?  
想要少购买点许可证,节省费用? 
收到软件厂商侵权通告!?  
有正版license,但许可证不够用,需要新购? 
联系方式 155-2731-8020
预留信息,一起解决您的问题
* 姓名:
* 手机:

* 公司名称:

姓名不为空

手机不正确

公司不为空