GEOmatrixRotate

Top  Previous  Next

Matrix rotieren.

Mit dieser Routine kann eine 3×3-Matrix um einen Winkel in Bogenmaß rotiert werden.

Parameter

matrix (DMATRIX *)                           [IN/OUT]

Handle auf eine 3×3-Matrix.

angle (DOUBLE)                                         [IN]

Rotationswinkel in Bogenmaß. 2Pi entspricht 360°.

x (DOUBLE)                                                [IN]

y (DOUBLE)                                                [IN]

xy-Koordinaten des Punktes um den rotiert wird.

Ergebnis

---

Deklaration

#include "basic.h"

 

void DLLENTRY GEOmatrixRotate (

     DMATRIX *   matrix,

     DOUBLE      angle,

     DOUBLE      x,

     DOUBLE      y

);

Verwandte Funktionen

GEOmatrixIdentity

GEOmatrixScale

GEOmatrixShear

GEOmatrixTranslate

GEOconvertWithMatrix