MPPTransformMatrix
@interface MPPTransformMatrix : NSObjectA matrix that can be used for tansformations.
- 
                  
                  The number of rows. DeclarationObjective-C @property (nonatomic, readonly) NSUInteger rows;
- 
                  
                  The number of columns. DeclarationObjective-C @property (nonatomic, readonly) NSUInteger columns;
- 
                  
                  The values of the transform matrix. DeclarationObjective-C @property (nonatomic, readonly) float *_Nonnull data;
- 
                  
                  Creates a new MPPTransformMatrix. DeclarationObjective-C - (nonnull instancetype)initWithData:(nonnull const float *)data rows:(NSInteger)rows columns:(NSInteger)columns;ParametersdataPointer to the memory location where the data is stored. The data is copied. rowsThe number of rows. columnsThe number of columns. 
- 
                  
                  Undocumented DeclarationObjective-C - (instancetype)init NS_UNAVAILABLE;
- 
                  
                  Returns the value located at the specified location. An NSRangeException is raised if the location is outside the range of the matrix. DeclarationObjective-C - (float)valueAtRow:(NSUInteger)row column:(NSUInteger)column;
- 
                  
                  Undocumented DeclarationObjective-C + (instancetype)new NS_UNAVAILABLE;