.NET 6 十行代码搭建三维应用程序
dotNET全栈开发
共 2185字,需浏览 5分钟
·
2022-01-10 20:20
给程序起一个酷酷的名字,选一个酷酷的位置:
选一下.NET 6
二、配置项目
从nuget.org上或者本地安装AnyCAD Rapid SDK 2022。
下载链接: https://pan.baidu.com/s/1FQQpwjImo-T3thUk5E1sQw 提取码: 9d86
三、设计界面
给三维界面留个位置,采用经典的所有窗口。右边用来显示三维内容。
四、创建三维控件
using AnyCAD.Forms;
namespace WinFormsStarter
{
public partial class Form1 : Form
{
RenderControl mRenderView;
public Form1()
{
InitializeComponent();
mRenderView = new RenderControl(this.splitContainer1.Panel2);
}
}
}
运行一下:
五、显示模型
using AnyCAD.Forms;
using AnyCAD.Foundation;
namespace WinFormsStarter
{
public partial class Form1 : Form
{
RenderControl mRenderView;
public Form1()
{
InitializeComponent();
mRenderView = new RenderControl(this.splitContainer1.Panel2);
//构造函数里不能在使用Rapid SDK的其他的API,需要放在Load里面
}
// 窗口加载后,创建个球
private void Form1_Load(object sender, EventArgs e)
{
var shape = ShapeBuilder.MakeSphere(new GPnt(0, 0, 0), 10);
mRenderView.ShowShape(shape, ColorTable.PaleVioletRed);
}
}
}
再运行一下:
六、资源释放
在调试模式下,程序退出的时候在输出窗口中,你可能会发现这样的错误:
程序“[81560] WinFormsStarter.exe”已退出,返回值为 3221225477 (0xc0000005) 'Access violation'。
这是因为AnyCAD Rapid SDK没有正确的释放资源。为保证三维控件资源能够正确释放,程序能够得到正常的返回值,只需要这样加一下:
namespace WinFormsStarter
{
internal static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
AnyCAD.Foundation.GlobalInstance.Initialize();
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
AnyCAD.Foundation.GlobalInstance.Destroy();
}
}
}
七、总结
.NET6为开发者带来了高效的开发体验,而AnyCAD Rapid SDK也一样,通过简单几步即可为应用添加三维能力,让程序显得高大上!
AnyCAD Rapid SDK的包括三维显示、造型、STEP/IGES读取等场景的三维功能,能够满足大部分的三维工业软件应用场景,比如CAD设计、CAE仿真、CAM加工,机器人模拟等,可以应用在建筑、机械、电力、化工、自动化等多个领域。
源码:https://gitee.com/anycad/rapid.net.starter
转自:AnyCAD
链接:cnblogs.com/anycad/p/anycad-winforms-net6-starter.html
评论