Back to class index
| float3x4::SetSyntaxvoid float3x4::Set(float _00, float _01, float _02, float _03, float _10, float _11, float _12, float _13, float _20, float _21, float _22, float _23); [8 lines of code]Sets all values of this matrix. Performance8.21nsecs/call ≈ 121.8M calls/second ≈ 2.03M calls/frame (@ 60fps). Syntaxvoid float3x4::Set(const float3x4 &rhs); [4 lines of code]Sets this to be a copy of the matrix rhs. Performance8.21nsecs/call ≈ 121.8M calls/second ≈ 2.03M calls/frame (@ 60fps). Syntaxvoid float3x4::Set(const float *values); [9 lines of code]Sets all values of this matrix. Parametersconst float *valuesThe values in this array will be copied over to this matrix. The source must contain 12 floats in row-major order (the same order as the Set() function above has its input parameters in). PerformanceThis function could not be profiled. Either the function body is too small, or appropriate function parameters could not be generated. Syntaxvoid float3x4::Set(int row, int col, float value); [12 lines of code]Sets a single element of this matrix. ParametersintrowThe row index of the element to set, in the range [0-2]. intcolThe col index of the element to set, in the range [0-3]. PerformanceThis function could not be profiled. Either the function body is too small, or appropriate function parameters could not be generated. Leave a Comment |