本文介绍了如何使用IlPanel C#绘制3D功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用Ilnumerics,现在我想知道,如果它在IlPanel功能可能情节像F(X,Y)的两个变量。
I'm using Ilnumerics and now I would like know if it's possible plot in IlPanel function with two variables like f(x,y).
我已搜查各地的互联网,但我一无所获。有人能帮助我吗?
I have searched around internet but I have found nothing. Someone can help me?
推荐答案
从多达3.3.2版本。 ILSurface允许两个参数的函数的定义,以绘制成一个面:
Up from version 3.3.2. 'ILSurface' allows the definition of a function of two arguments to be plotted as a surface:
private void ilPanel1_Load(object sender, EventArgs e) {
ilPanel1.Scene.Add(
new ILPlotCube(twoDMode: false) {
new ILSurface((x,y) => {
return (float)Math.Sin(0.1f * x * x + 0.2f * y * y);
})
});
}
结果:
Result:
这篇关于如何使用IlPanel C#绘制3D功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!