C# Класс StdPaint.Vector2

A vector representing a point in 2D space.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
X double
Y double

Открытые методы

Метод Описание
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.

Описание методов

Distance() публичный статический Метод

Returns the distance between two vectors.
public static Distance ( Vector2 a, Vector2 b ) : double
a Vector2 The first vector.
b Vector2 The second vector.
Результат double

DistanceSquared() публичный статический Метод

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.
Результат double

Dot() публичный статический Метод

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.
Результат double

FromPoint() публичный статический Метод

Create a new Vector2 from a Point object.
public static FromPoint ( Point point ) : Vector2
point Point The Point object to create the Vector2 from.
Результат Vector2

Normalize() публичный статический Метод

Returns the normalized version of a vector.
public static Normalize ( Vector2 vector ) : Vector2
vector Vector2 The vector to normalize.
Результат Vector2

ToPoint() публичный Метод

Create a new Point from the Vector2.
public ToPoint ( ) : Point
Результат Point

Vector2() публичный Метод

Create a new Vector2 from coordinates.
public Vector2 ( double x, double y ) : System
x double The X coordinate.
y double The Y coordinate.
Результат System

Vector2() публичный Метод

Create a new Vector2 from coordinates.
public Vector2 ( int x, int y ) : System
x int The X coordinate.
y int The Y coordinate.
Результат System

operator() публичный статический Метод

Multiplies two vectors.
public static operator ( ) : Vector2
Результат Vector2

Описание свойств

X публичное свойство

The X coordinate.
public double X
Результат double

Y публичное свойство

The Y coordinate.
public double Y
Результат double