提问人:Daniel Rushton 提问时间:6/25/2014 最后编辑:Joseph MarkDaniel Rushton 更新时间:5/25/2015 访问量:1172
swift 中缺少 GLKMatrix4(和其他类似版本)?
GLKMatrix4 (and other similar) missing in swift?
问:
我在 swift 中创建 4X4 openGL 矩阵时遇到问题。我已经导入了以下在 Obj-C 中工作的内容:
import UIKit
import GLKit
import OpenGLES
GLKMatrix4
不可用,但是我可以访问其他 GL 数学资源,例如。GLKMathDegreesToRadians()
还有其他人遇到过这个问题吗?
答:
0赞
Mark Essel
5/25/2015
#1
这在 playground 中按预期工作,并生成一个 4x4 矩阵 版本 6.3.2 (6D2105)
import GLKit
let someMatrix: GLKMatrix4 = GLKMatrix4Make(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
评论
GLKMatrix4Make()
GLKMatrix4()