zoukankan      html  css  js  c++  java
  • AnyCAD C#开发-BrepTools::Translate移动

    AnyCAD2020+VS2012
    
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    
    using AnyCAD.Platform;
    using AnyCAD.Exchange;
    using AnyCAD.Presentation;
    
    namespace WindowsFormsApplication3
    {
        public partial class Form1 : Form
        {
            AnyCAD.Presentation.RenderWindow3d renderView;
            AnyCAD.Platform.BrepTools BrepToolsFeat = new AnyCAD.Platform.BrepTools();
            AnyCAD.Exchange.StepReader reader = new AnyCAD.Exchange.StepReader();
    
            public Form1()
            {
                InitializeComponent();
    
                this.renderView = new AnyCAD.Presentation.RenderWindow3d();
                this.Controls.Add(renderView);
                renderView.Size = this.ClientSize;
            }
    
            TopoShape exrude1;
            TopoShape exrude2;
            private void button1_Click(object sender, EventArgs e)
            {
                //创建椭圆
                TopoShape ellipse1 = BrepToolsFeat.MakeEllipse(new Vector3(0, 0, 0), 60, 40, new Vector3(0, 0, 1));
    
                //创建一个面
                TopoShape ellipse2 = BrepToolsFeat.MakeEllipse(new Vector3(100, 100, 100), 60, 40, new Vector3(0, 0, 1));
                TopoShape face1 = BrepToolsFeat.MakeFace(ellipse2);
    
                //创建拉伸
                exrude1 = BrepToolsFeat.Extrude(ellipse1, 100, new Vector3(0, 0, 1));
                exrude2 = BrepToolsFeat.Extrude(face1, 100, new Vector3(0, 0, 1));
    
                //显示几何
                int exrude1ID = 0;
                renderView.ShowGeometry(exrude1, exrude1ID);
    
                int exrude2ID = 0;
                renderView.ShowGeometry(exrude2, exrude2ID);
    
            }
    
            private void button2_Click(object sender, EventArgs e)
            {
                //移动
                TopoShape translate1 = BrepToolsFeat.Translate(exrude1, new Vector3(0, 200, 0));
    
                //显示几何
                int translate1ID = 0;
                renderView.ShowGeometry(translate1, translate1ID);
            }
        }
    }
    
    Caesar卢尚宇
    2020年6月29日

  • 相关阅读:
    经典面试题目C语言
    论C语言中二级指针和二维数组之间的区别
    判断单链表中是否有环找到环的入口节点
    论decltype和auto的区别
    在ubuntu下安装opencv
    C中有关引用和指针的异同
    (四)关于读文件的结束的判别方法(EOF和feof)以及区别
    (三)论sizeof与strlen之间的区别
    (二)C语言文本流和二进制流的区别
    (一)C的编译,printf,规范化
  • 原文地址:https://www.cnblogs.com/nxopen2018/p/13499287.html
Copyright © 2011-2022 走看看