-
Removed from Point structure:
-
static bool Equals (Point point1, Point point2)
-
override Equals (object o)
-
override Equals (Point value)
-
override int GetHashCode()
-
void Offset(double offsetX, double offsetY)
-
static explicit operator Size(Point point)
-
Removed from Color structure:
-
static Color FromScRgb(float a, float r, float g, float b)
-
static Color FromRgb(byte r, byte g, byte b)
-
static Color operator -(Color color1, Color color2)
-
static Color Subtract(Color color1, Color color2)
-
override string ToString()
-
static bool AreClose(Color color1, Color color2)
-
void Clamp()
-
static bool Equals(Color color1, Color color2)
-
bool Equals(Color color)
-
float ScA
-
float ScR
-
float ScG
-
float ScB
-
float a, r, g, b;
-
byte a, r, g, b;
-
Removed from Size structure:
-
static Size Empty { get; }
-
bool IsEmpty { get; }
-
bool Equals (Size value);
-
override int GetHashCode ();
-
static explicit operator Point (Size size);
-
Removed from Matrix structure:
-
static bool Equals (Matrix matrix1, Matrix matrix2);
-
bool Equals (Matrix value);
-
Vector Transform (Vector vector);
-
Removed from Rect structure:
-
override string ToString()
-
Rect(Point location, Size size);
-
Rect(Size size);
-
Point Location { get; set; }
-
Size Size { get; set; }
-
double Left { get; }
-
double Top { get; }
-
double Right { get; }
-
double Bottom { get; }
-
Point TopLeft { get; }
-
Point TopRight { get; }
-
Point BottomLeft { get; }
-
Point BottomRight { get; }
-
bool Contains(double x, double y);
-
bool Contains(Rect rect);
-
bool IntersectsWith(Rect rect);
-
static Rect Intersect(Rect rect1, Rect rect2);
-
static Rect Union(Rect rect1, Rect rect2);
-
static Rect Union(Rect rect, Point point);
-
void Offset(double offsetX, double offsetY);
-
static Rect Offset(Rect rect, double offsetX, double offsetY);
-
void Inflate(Size size);
-
void Inflate(double width, double height);
-
static Rect Inflate(Rect rect, Size size);
-
static Rect Inflate(Rect rect, double width, double height);
-
void Scale(double scaleX, double scaleY);
-
static bool Equals (Rect rect1, Rect rect2);