未能遵循初学者示例:使用 ILNumerics 创建一个交互球体。我添加了 nuget 包作为参考,并将 ILPanel 从工具栏拖到我的表单中。
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 ILNumerics;
using ILNumerics.Drawing;
using ILNumerics.Drawing.Plotting;
namespace WindowsFormsApplication1 {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private void ilPanel1_Load_1(object sender, EventArgs e) {
var scene = new ILScene();
scene.Add(new ILSphere());
ilPanel1.Scene = scene;
}
}
}
它显示了一个球体。但球体始终是窗口的全尺寸。鼠标旋转也不起作用。我错过了什么?