Ejemplo n.º 1
0
 public static extern SU_RESULT SUVector2DIsSameDirectionAs(ref SUVector2D vector1, ref SUVector2D vector2, ref bool same_direction);
Ejemplo n.º 2
0
 public static extern SU_RESULT SUVector2DIsParallelTo(ref SUVector2D vector1, ref SUVector2D vector2, ref bool parallel);
Ejemplo n.º 3
0
 public static extern SU_RESULT SUVector2DIsPerpendicularTo(ref SUVector2D vector1, ref SUVector2D vector2, ref bool perpendicular);
Ejemplo n.º 4
0
 public static extern SU_RESULT SUVector2DCreate(ref SUVector2D vector, ref SUPoint2D from, ref SUPoint2D to);
Ejemplo n.º 5
0
 public static extern SU_RESULT SUVector2DIsValid(ref SUVector2D vector, ref bool valid);
Ejemplo n.º 6
0
 public static extern SU_RESULT SUVector2DAngleBetween(ref SUVector2D vector1, ref SUVector2D vector2, ref double angle);
Ejemplo n.º 7
0
 public static extern SU_RESULT SUVector2DTransform(ref SUTransformation2D transform, ref SUVector2D vector);
Ejemplo n.º 8
0
 public static extern SU_RESULT SUVector2DIsUnitVector(ref SUVector2D vector, ref bool is_unit_vector);
Ejemplo n.º 9
0
 public static extern SU_RESULT SUVector2DSetLength(ref SUVector2D vector, double length);
Ejemplo n.º 10
0
 public static extern SU_RESULT SUVector2DDot(ref SUVector2D vector1, ref SUVector2D vector2, ref double dot);
Ejemplo n.º 11
0
 public static extern SU_RESULT SUVector2DCross(ref SUVector2D vector1, ref SUVector2D vector2, ref double cross);
Ejemplo n.º 12
0
 public static extern SU_RESULT SUVector2DReverse(ref SUVector2D vector);
Ejemplo n.º 13
0
 public static extern SU_RESULT SUVector2DNormalize(ref SUVector2D vector);
Ejemplo n.º 14
0
 public static extern SU_RESULT SUVector2DIsEqual(ref SUVector2D vector1, ref SUVector2D vector2, ref bool equal);
Ejemplo n.º 15
0
 public static extern SU_RESULT SUPoint2DOffset(ref SUPoint2D point1, ref SUVector2D vector, ref SUPoint2D point2);
Ejemplo n.º 16
0
 public static extern SU_RESULT SUPoint2DToSUPoint2D(ref SUPoint2D point1, ref SUPoint2D point2, out SUVector2D vector);