gl Scale implementation
| 170 | |
| 171 | // gl Scale implementation |
| 172 | void |
| 173 | VSMatrix::scale(FLOATTYPE x, FLOATTYPE y, FLOATTYPE z) |
| 174 | { |
| 175 | mMatrix[0] *= x; mMatrix[1] *= x; mMatrix[2] *= x; mMatrix[3] *= x; |
| 176 | mMatrix[4] *= y; mMatrix[5] *= y; mMatrix[6] *= y; mMatrix[7] *= y; |
| 177 | mMatrix[8] *= z; mMatrix[9] *= z; mMatrix[10] *= z; mMatrix[11] *= z; |
| 178 | } |
| 179 | |
| 180 | |
| 181 | // gl Rotate implementation |
no outgoing calls
no test coverage detected