摘要:
1. After your app exits its applicationDidEnterBackground: method, it must not make any new OpenGL ES calls. If it makes an OpenGL ES call, it is term 阅读全文
摘要:
1. An AVAsset defines the collective properties of the tracks that comprise the asset. (You can access the instances of AVAssetTrack representing tra 阅读全文
摘要:
1. 给这个测试库取名为dylib,它包含一个函数add。lua中这样使用: local dylib = require "dylib.test" local c = dylib.add(1,2) print(c)上面的dylib.test就是我编译生成的dylib/test.so文件。这个文件该怎 阅读全文
摘要:
1. 为了把二维图形的变化统一在一个坐标系里,引入了齐次坐标的概念,即把一个图形用一个三维矩阵表示,其中第三列总是(0,0,1),用来作为坐标系的标准。所以所有的变化都由前两列完成。 以上参数在矩阵中的表示为: |a b 0| |c d 0| |tx ty 1| 运算原理:原坐标设为(X,Y,1); 阅读全文
摘要:
1. AVMutableComposition is a mutable subclass of AVComposition you use when you want to create a new composition from existing assets. You can add and 阅读全文