初学者ILNumerics Plotting Sphere示例

时间:2013-06-23 10:41:43

标签: winforms 3d plot ilnumerics

未能遵循开头示例:使用ILNumerics创建一个interactove球体。我添加了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; 

        }
    }
}

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

1 个答案:

答案 0 :(得分:3)

而不是

scene.Add(new ILSphere()); 

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

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

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