TransformMatrix
class TransformMatrix : NSObjectA matrix that can be used for tansformations.
- 
                  
                  The number of rows. DeclarationSwift var rows: UInt { get }
- 
                  
                  The number of columns. DeclarationSwift var columns: UInt { get }
- 
                  
                  The values of the transform matrix. DeclarationSwift var data: UnsafeMutablePointer<Float> { get }
- 
                  
                  Creates a new MPPTransformMatrix. DeclarationSwift init(data: UnsafePointer<Float>, rows: Int, columns: Int)ParametersdataPointer to the memory location where the data is stored. The data is copied. rowsThe number of rows. columnsThe number of columns. 
- 
                  
                  Undocumented 
- 
                  
                  Returns the value located at the specified location. An NSRangeException is raised if the location is outside the range of the matrix. DeclarationSwift func value(atRow row: UInt, column: UInt) -> Float
- 
                  
                  Undocumented