zoukankan      html  css  js  c++  java
  • AnyCAD C#开发-RenderWindow3d::SetBackgroundColor设置场景的背景颜色

    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();
    
            public Form1()
            {
                InitializeComponent();
    
                this.renderView = new AnyCAD.Presentation.RenderWindow3d();
                this.Controls.Add(renderView);
                renderView.Size = this.ClientSize;
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                //创建块1
                TopoShape box1 = BrepToolsFeat.MakeBox(new Vector3(0, 0, 0), new Vector3(0, 0, 1), new Vector3(100, 50, 20));
    
                //把体上所有的边倒角
                TopoShape NewBox1 = BrepToolsFeat.Chamfer(box1, 5, 8);
    
                //显示几何
                int NewBox1ID = 0;
                renderView.ShowGeometry(NewBox1, NewBox1ID);
            }
    
            private void button2_Click(object sender, EventArgs e)
            {
                //设置场景的背景颜色
                renderView.SetBackgroundColor(new ColorValue(1, 0, 0, 1), new ColorValue(1, 0, 0, 1), new ColorValue(1, 0, 0, 1));
            }
        }
    }
    
    
    Caesar卢尚宇
    2020年6月28日

  • 相关阅读:
    【内推面试分享】普通本科的蚂蚁金服校招面试经验分享,内附答案
    Json解析
    创建新的MessageBox窗口前,先关掉之前已经创建好的
    TcxCheckComboBox的使用
    Delphi调用C#的DLL
    StringGrid数据导出到Excel
    从Excel导入信息在StringGrid显示
    JS的修饰符
    局部变量和全局变量
    List注意啊
  • 原文地址:https://www.cnblogs.com/nxopen2018/p/13513904.html
Copyright © 2011-2022 走看看