Beispiel #1
0
 public static extern SU_RESULT SUVector2DTransform(ref SUTransformation2D transform, ref SUVector2D vector);
Beispiel #2
0
 public static extern SU_RESULT SUTransformation2DScaleAboutPoint(ref SUTransformation2D transform, ref SUPoint2D point, double scale);
Beispiel #3
0
 public static extern SU_RESULT SUTransformation2DNonUniformScaleAboutPoint(ref SUTransformation2D transform, ref SUPoint2D point, double x_scale, double y_scale);
Beispiel #4
0
 public static extern SU_RESULT SUTransformation2DScale(ref SUTransformation2D transform, double scale);
Beispiel #5
0
 public static extern SU_RESULT SUTransformation2DNonUniformScale(ref SUTransformation2D transform, double x_scale, double y_scale);
Beispiel #6
0
 public static extern SU_RESULT SUTransformation2DMultiply(ref SUTransformation2D transform1, ref SUTransformation2D transform2, ref SUTransformation2D out_transform);
Beispiel #7
0
 public static extern SU_RESULT SUTransformation2DGetInverse(ref SUTransformation2D transform, ref SUTransformation2D inverse);
Beispiel #8
0
 public static extern SU_RESULT SUTransformation2DIsIdentity(ref SUTransformation2D transform, ref bool is_identity);
Beispiel #9
0
 public static extern SU_RESULT SUTransformation2DRotation(ref SUTransformation2D transform, ref SUPoint2D point, double angle);
Beispiel #10
0
 public static extern SU_RESULT SUPoint2DTransform(ref SUTransformation2D transform, ref SUPoint2D point);