了解Android中的android.graphics.Camera对象
我正在为我的学士论文开发 Android AR 应用程序。
我在包 android.graphics 中找到了 Camera 类(sdk 链接:http://developer.android.com/reference/android/graphics/Camera.html),我不明白该方法 dotWithNormal() 是什么?
您有使用该对象的教程吗?
I am developing an Android AR app for my bachelor's Thesis.
I found the Camera class in package android.graphics (sdk link: http://developer.android.com/reference/android/graphics/Camera.html) and I didn't understand what the method dotWithNormal()?
Do you have any tutorial in which this object is used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它对于操作附加到
Canvas
的Matrix
非常有用,特别是在不使用 OpenGL 的情况下实现巧妙的 3D 效果。这个 3D 翻转效果使用了它,IIRC。
It's very useful for manipulating the
Matrix
attached to aCanvas
, in particular for doing clever 3D effects without OpenGL.This 3D flip effect uses it, IIRC.