#include "cddefs.h"
#include <string.h>
Go to the source code of this file.
void TCurrent |
( |
long * |
TFP | ) |
|
Definition at line 74 of file xforms.c.
79 for(i = 0; i < 3; ++i)
Definition at line 189 of file xforms.c.
194 *l++ = 1; *l++ = 0; *l++ = 0;
195 *l++ = 0; *l++ = 1; *l++ = 0;
196 *l++ = 0; *l++ = 0; *l++ = 1;
void TInversePoint |
( |
long * |
X, |
|
|
long* |
Y |
|
) |
| |
Definition at line 315 of file xforms.c.
325 *
Y = *
X*InverseMatrix[0][1] + *
Y*InverseMatrix[1][1]
326 + InverseMatrix[2][1];
void TLoadCurrent |
( |
long * |
TFP | ) |
|
Definition at line 85 of file xforms.c.
90 for(i = 0; i < 3; ++i)
91 for(j = 0; j < 3; ++j)
void TPoint |
( |
long * |
X, |
|
|
long* |
Y |
|
) |
| |
Definition at line 216 of file xforms.c.
233 long Int1,Int2,Int3,Int4,Int5,Int6;
void TRotate |
( |
long |
XDirection, |
|
|
long |
YDirection |
|
) |
| |
Definition at line 120 of file xforms.c.
128 if (XDirection == 0){
129 if (
Abs(YDirection) > 1)
135 elif (YDirection == 0){
136 if (
Abs(XDirection) > 1)
142 if (XDirection == 1
And YDirection == 0)
147 elif (XDirection == 0
And YDirection == -1){
161 elif (XDirection == 0
And YDirection == 1){
175 elif (XDirection == -1
And YDirection == 0){
void TTranslate |
( |
long |
X, |
|
|
long |
Y |
|
) |
| |