Packed Record TGenericVector2

Unit

Declaration

type TGenericVector2 = packed record

Description

Vector of 2 floating-point values.

See also
TGenericVector3
Vector of 3 floating-point values.

Overview

Nested Types

Public TIndex = 0..Count - 1;

Fields

Public nested const Count = 2;
Public var X: TGenericScalar;
Public var Y: TGenericScalar;

Methods

Public class operator + (const A, B: TGenericVector2): TGenericVector2; inline;
Public class operator - (const A, B: TGenericVector2): TGenericVector2; inline;
Public class operator - (const V: TGenericVector2): TGenericVector2; inline;
Public class operator * (const V: TGenericVector2; const Scalar: TGenericScalar): TGenericVector2; inline;
Public class operator * (const Scalar: TGenericScalar; const V: TGenericVector2): TGenericVector2; inline;
Public class operator * (const V1, V2: TGenericVector2): TGenericVector2; inline;
Public class operator / (const V: TGenericVector2; const Scalar: TGenericScalar): TGenericVector2; inline;
Public procedure Init(const AX, AY: TGenericScalar); inline; deprecated 'initialize instead like "V := Vector2(X, Y)"; modifying a temporary record value is a trap, e.g. this is not reliable: "Scene.TranslationXY.Init(X, Y)"';
Public function ToString: string;
Public function ToRawString: string;
Public function Normalize: TGenericVector2; inline;
Public procedure NormalizeMe; inline; deprecated 'normalize instead like "V := V.Normalize"; modifying a temporary record value is a trap, e.g. this is not reliable: "Scene.TranslationXY.NormalizeMe"';
Public function Length: TGenericScalar; inline;
Public function LengthSqr: TGenericScalar; inline;
Public function AdjustToLength(const NewLength: TGenericScalar): TGenericVector2; inline;
Public class function DotProduct(const V1, V2: TGenericVector2): TGenericScalar; static; inline;
Public function Abs: TGenericVector2; inline;
Public function IsZero: boolean; overload; inline;
Public function IsZero(const Epsilon: TGenericScalar): boolean; overload; inline;
Public function IsPerfectlyZero: boolean;
Public class function Equals(const V1, V2: TGenericVector2): boolean; overload; inline; static;
Public class function Equals(const V1, V2: TGenericVector2; const Epsilon: TGenericScalar): boolean; overload; inline; static;
Public class function PerfectlyEquals(const V1, V2: TGenericVector2): boolean; static; inline;
Public class function Lerp(const A: TGenericScalar; const V1, V2: TGenericVector2): TGenericVector2; static; inline;
Public class function Zero: TGenericVector2; static; inline;

Properties

Public property Data [constIndex:TIndex]: TGenericScalar read GetItems write SetItems; deprecated 'use instead X, Y fields; modifying a temporary record value is a trap, e.g. this is not reliable: "Scene.TranslationXY.Data[0] := Scene.TranslationXY.Data[0] + 1"';
Public property AsArray [constIndex:TIndex]: TGenericScalar read GetItems;
Public property Items [constIndex:TIndex]: TGenericScalar read GetItems write SetItems; deprecated 'use instead X, Y fields; modifying a temporary record value is a trap, e.g. this is not reliable "Scene.TranslationXY[0] := Scene.TranslationXY[0] + 1"';
Public class property One [constIndex:TIndex]: TGenericVector2 read GetOne;

Description

Nested Types

Public TIndex = 0..Count - 1;
 

Fields

Public nested const Count = 2;
 
Public var X: TGenericScalar;
 
Public var Y: TGenericScalar;
 

Methods

Public class operator + (const A, B: TGenericVector2): TGenericVector2; inline;
 
Public class operator - (const A, B: TGenericVector2): TGenericVector2; inline;
 
Public class operator - (const V: TGenericVector2): TGenericVector2; inline;
 
Public class operator * (const V: TGenericVector2; const Scalar: TGenericScalar): TGenericVector2; inline;
 
Public class operator * (const Scalar: TGenericScalar; const V: TGenericVector2): TGenericVector2; inline;
 
Public class operator * (const V1, V2: TGenericVector2): TGenericVector2; inline;

Vector * vector makes a component-wise multiplication. This is consistent with GLSL and other vector APIs.

Public class operator / (const V: TGenericVector2; const Scalar: TGenericScalar): TGenericVector2; inline;
 
Public procedure Init(const AX, AY: TGenericScalar); inline; deprecated 'initialize instead like "V := Vector2(X, Y)"; modifying a temporary record value is a trap, e.g. this is not reliable: "Scene.TranslationXY.Init(X, Y)"';

Warning: this symbol is deprecated: initialize instead like "V := Vector2(X, Y)"; modifying a temporary record value is a trap, e.g. this is not reliable: "Scene.TranslationXY.Init(X, Y)"

 
Public function ToString: string;
 
Public function ToRawString: string;

Convert to string using the most precise (not always easily readable by humans) float format. This may use the exponential (scientific) notation to represent the floating-point value, if needed.

This is suitable for storing the value in a file, with a best precision possible.

Public function Normalize: TGenericVector2; inline;
 
Public procedure NormalizeMe; inline; deprecated 'normalize instead like "V := V.Normalize"; modifying a temporary record value is a trap, e.g. this is not reliable: "Scene.TranslationXY.NormalizeMe"';

Warning: this symbol is deprecated: normalize instead like "V := V.Normalize"; modifying a temporary record value is a trap, e.g. this is not reliable: "Scene.TranslationXY.NormalizeMe"

 
Public function Length: TGenericScalar; inline;
 
Public function LengthSqr: TGenericScalar; inline;

Vector length squared. This is slightly faster than Length as it avoids calculating a square root along the way. (But, please remember to not optimize your code without a need. Optimize only parts that are proven bottlenecks, otherwise don't make the code less readable for the sake of speed.)

Public function AdjustToLength(const NewLength: TGenericScalar): TGenericVector2; inline;

Calculate a new vector scaled so that it has length equal to NewLength. NewLength may be negative, in which case we'll negate the vector and then adjust it's length to Abs(NewLength).

Public class function DotProduct(const V1, V2: TGenericVector2): TGenericScalar; static; inline;

Dot product of two vectors. See https://en.wikipedia.org/wiki/Dot_product .

Public function Abs: TGenericVector2; inline;

Absolute value on all components.

Public function IsZero: boolean; overload; inline;

Are all components equal to zero (within some epsilon margin).

Public function IsZero(const Epsilon: TGenericScalar): boolean; overload; inline;

Are all components equal to zero (within Epsilon margin).

Public function IsPerfectlyZero: boolean;
 
Public class function Equals(const V1, V2: TGenericVector2): boolean; overload; inline; static;

Compare two vectors, with epsilon to tolerate slightly different floats.

Public class function Equals(const V1, V2: TGenericVector2; const Epsilon: TGenericScalar): boolean; overload; inline; static;
 
Public class function PerfectlyEquals(const V1, V2: TGenericVector2): boolean; static; inline;

Compare two vectors using exact comparison (like the "=" operator to compare floats).

Public class function Lerp(const A: TGenericScalar; const V1, V2: TGenericVector2): TGenericVector2; static; inline;

Linear interpolation between two vector values.

See also
TGenericVector3.Lerp
Linear interpolation between two vector values.
Public class function Zero: TGenericVector2; static; inline;
 

Properties

Public property Data [constIndex:TIndex]: TGenericScalar read GetItems write SetItems; deprecated 'use instead X, Y fields; modifying a temporary record value is a trap, e.g. this is not reliable: "Scene.TranslationXY.Data[0] := Scene.TranslationXY.Data[0] + 1"';

Warning: this symbol is deprecated: use instead X, Y fields; modifying a temporary record value is a trap, e.g. this is not reliable: "Scene.TranslationXY.Data[0] := Scene.TranslationXY.Data[0] + 1"

Access (get, set) vector components by index. We discourage using it. Use X, Y to change vector components. Use AsArray to access it by index, read-only.

Public property AsArray [constIndex:TIndex]: TGenericScalar read GetItems;

Get vector components by index.

Public property Items [constIndex:TIndex]: TGenericScalar read GetItems write SetItems; deprecated 'use instead X, Y fields; modifying a temporary record value is a trap, e.g. this is not reliable "Scene.TranslationXY[0] := Scene.TranslationXY[0] + 1"';

Warning: this symbol is deprecated: use instead X, Y fields; modifying a temporary record value is a trap, e.g. this is not reliable "Scene.TranslationXY[0] := Scene.TranslationXY[0] + 1"

 
Public class property One [constIndex:TIndex]: TGenericVector2 read GetOne;
 

Generated by PasDoc 0.16.0.