C# Class StdPaint.Vector2

A vector representing a point in 2D space.
Show file Open project: TheBerkin/StdPaint

Public Properties

Property Type Description
X double
Y double

Public Methods

Method Description
Distance ( Vector2 a, Vector2 b ) : double

Returns the distance between two vectors.

DistanceSquared ( Vector2 a, Vector2 b ) : double

Returns the squared distance between two vectors.

Dot ( Vector2 a, Vector2 b ) : double

Returns the dot product of two vectors.

FromPoint ( Point point ) : Vector2

Create a new Vector2 from a Point object.

Normalize ( Vector2 vector ) : Vector2

Returns the normalized version of a vector.

ToPoint ( ) : Point

Create a new Point from the Vector2.

Vector2 ( double x, double y ) : System

Create a new Vector2 from coordinates.

Vector2 ( int x, int y ) : System

Create a new Vector2 from coordinates.

operator ( ) : Vector2

Multiplies two vectors.

Method Details

Distance() public static method

Returns the distance between two vectors.
public static Distance ( Vector2 a, Vector2 b ) : double
a Vector2 The first vector.
b Vector2 The second vector.
return double

DistanceSquared() public static method

Returns the squared distance between two vectors.
public static DistanceSquared ( Vector2 a, Vector2 b ) : double
a Vector2 The first vector.
b Vector2 The second vector.
return double

Dot() public static method

Returns the dot product of two vectors.
public static Dot ( Vector2 a, Vector2 b ) : double
a Vector2 The first vector.
b Vector2 The second vector.
return double

FromPoint() public static method

Create a new Vector2 from a Point object.
public static FromPoint ( Point point ) : Vector2
point Point The Point object to create the Vector2 from.
return Vector2

Normalize() public static method

Returns the normalized version of a vector.
public static Normalize ( Vector2 vector ) : Vector2
vector Vector2 The vector to normalize.
return Vector2

ToPoint() public method

Create a new Point from the Vector2.
public ToPoint ( ) : Point
return Point

Vector2() public method

Create a new Vector2 from coordinates.
public Vector2 ( double x, double y ) : System
x double The X coordinate.
y double The Y coordinate.
return System

Vector2() public method

Create a new Vector2 from coordinates.
public Vector2 ( int x, int y ) : System
x int The X coordinate.
y int The Y coordinate.
return System

operator() public static method

Multiplies two vectors.
public static operator ( ) : Vector2
return Vector2

Property Details

X public property

The X coordinate.
public double X
return double

Y public property

The Y coordinate.
public double Y
return double