Javascript 中的 gluProject 等效项
我正在寻找 javascript 中 gluProject 的等效项,以便与 WebGL 一起使用。有谁知道开源实现在哪里或者如何用 javascript 实现它?
我正在使用这里的 glMatrix javascript 库:
https://github.com/toji/gl-matrix< /a>
但缺少项目功能。感谢您的帮助!
I'm looking for an equivalent of gluProject in javascript for use with WebGL. Does anyone know where an open-source implementation is or how to implement it in javascript?
I'm using the glMatrix javascript library from here:
https://github.com/toji/gl-matrix
but it lacks a project function. Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑:看看 WebGLU https://github.com/OneGeek/WebGLU
我还没有使用过它,但它似乎是你正在寻找的。
我还找到了另一个项目:http://code.google.com/p/ofxjavascript/wiki /ofxGlu 不过看起来不太有前途......
如果您刚刚开始学习 WebGL,我还建议使用“更高”级别的 javascript 3D 引擎。我从现有的解决方案中学到了很多东西,最后才提出了自己的库。
EDIT: Take a look at WebGLU https://github.com/OneGeek/WebGLU
I have not yet worked with it but it seems what you are looking for.
I also found another project: http://code.google.com/p/ofxjavascript/wiki/ofxGlu It doesn't look too promesing though...
I would also suggest using a "higher" level javascript 3D engine if you are just beginning to learn WebGL. I learned a lot from existing solutions only to finally come up with my own libs.