|
SRM Reference Manual
Functions SRM Matrix4x4Add |
|---|
| extern SRM_Status_Code | ||||
| SRM_Matrix4x4Add | ||||
| ( | ||||
| const | SRM_Matrix_4x4 | * | a_ptr, | (notes) |
| const | SRM_Matrix_4x4 | * | b_ptr, | (notes) |
| SRM_Matrix_4x4 | * | result_out_ptr | (notes) | |
| ); | ||||
Adds 2 SRM_Matrix_4x4 matrices.
| SRM_STAT_CODE_SUCCESS | if valid parameters were passed in and all operations succeeded. |
| SRM_STAT_CODE_INACTIONABLE | and *result_out_ptr is left unchanged, if a_ptr or b_ptr was NULL. |
| SRM_STAT_CODE_INACTIONABLE | and *result_out_ptr is left unchanged, if result_out_ptr was NULL. |
pointer to 1st operand
pointer to 2nd operand
pointer to result.
Prev: SRM_Matrix3x3Sub.
Next: SRM_Matrix4x4Multiply.
Up:Index.
|