1

未能遵循初学者示例:使用 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; 

        }
    }
}

它显示了一个球体。但球体始终是窗口的全尺寸。鼠标旋转也不起作用。我错过了什么?

4

1 回答 1

3

代替

scene.Add(new ILSphere()); 

您可以在场景中的标准相机下方添加球体:

scene.Camera.Add(new ILSphere()); 

这将为您提供所需的结果。相机创建自己的坐标系,在其子树中定位对象并为它们提供所有交互选项(旋转、缩放、平移等)

于 2013-06-23T11:10:02.400 回答