SceneJS 绘图示例
是否有任何好的开源 SceneJS 示例可以绘制与 http://www.graphycalc.com/< 中演示的函数类似的函数/a>?
Are there any good open source SceneJS examples that can graph functions similar to those demonstrated in http://www.graphycalc.com/?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有看到任何东西,但简单地使用自定义顶点着色器将网格的顶点转换为您想要的函数应该相对容易:https://github.com/xeolabs/scenejs/wiki/shader
I haven't seen any but it should be relatively easy to simply use a custom vertex shader that transforms the vertices of a grid into your desired function: https://github.com/xeolabs/scenejs/wiki/shader
您还可以使用带有几何节点的数据源插件,以不断更新其网格:
http://scenejs.org/examples.html?page=geometryPluginPullStream
http://scenejs.org/examples.html?page=geometryPluginPushStream
这是可用的顶点变形示例(通过标签选择,见左栏,点击一个即可加载):
http://scenejs.org/examples.html?tags=vertexDisplacement
You can also use a data source plugin with a geometry node, to continually update it's mesh:
http://scenejs.org/examples.html?page=geometryPluginPullStream
http://scenejs.org/examples.html?page=geometryPluginPushStream
And here's the available vertex deformation examples (selected by tag, see left column, click one to load it):
http://scenejs.org/examples.html?tags=vertexDisplacement