Displaying 1 result from an estimated 1 matches for "multmv".
Did you mean:
multmp
2007 Jun 12
0
[PATCH] Combined checkFTB and capDirection into one checkOrientation function.
...x2;
- pntB[1] = outputPtr->region.extents.y1;
- pntB[2] = 0.0f;
- pntB[3] = 1.0f;
-
- pntC[0] = outputPtr->region.extents.x1 + outputPtr->width / 2.0f;
- pntC[1] = outputPtr->region.extents.y1 + outputPtr->height / 2.0f;
- pntC[2] = 0.0f;
- pntC[3] = 1.0f;
-
- MULTMV (mvp, pntA);
- DIVV (pntA);
-
- MULTMV (mvp, pntB);
- DIVV (pntB);
-
- MULTMV (mvp, pntC);
- DIVV (pntC);
-
- vecA[0] = pntC[0] - pntA[0];
- vecA[1] = pntC[1] - pntA[1];
- vecA[2] = pntC[2] - pntA[2];
-
- vecB[0] = pntC[0] - pntB[0];
- vecB[1] = pntC[1] - pntB[1];
-...