Packed Record TVector2Integer
Unit
Declaration
type TVector2Integer = packed record
Description
Vector of 2 Integer values.
See also
- TVector3Integer
 - Vector of 3 Integer values.
 
Overview
Nested Types
![]()  | 
TIndex = 0..1; | 
Fields
![]()  | 
X: Integer | 
![]()  | 
Y: Integer | 
![]()  | 
Data: array [TIndex] of Integer | 
Methods
![]()  | 
class operator + (const A, B: TVector2Integer): TVector2Integer; inline; | 
![]()  | 
class operator - (const A, B: TVector2Integer): TVector2Integer; inline; | 
![]()  | 
class operator - (const V: TVector2Integer): TVector2Integer; inline; | 
![]()  | 
function ToString: string; | 
![]()  | 
function IsZero: boolean; inline; | 
![]()  | 
class function Equals(const V1, V2: TVector2Integer): boolean; static; inline; | 
![]()  | 
class function Zero: TVector2Integer; static; inline; | 
Properties
![]()  | 
property AsArray [const Index: TIndex]: Integer read GetItems; | 
Description
Nested Types
![]()  | 
TIndex = 0..1; | 
| 
 This item has no description.  | |
Fields
![]()  | 
X: Integer | 
| 
 This item has no description.  | |
![]()  | 
Y: Integer | 
| 
 This item has no description.  | |
![]()  | 
Data: array [TIndex] of Integer | 
| 
 This item has no description.  | |
Methods
![]()  | 
class operator + (const A, B: TVector2Integer): TVector2Integer; inline; | 
| 
 This item has no description.  | |
![]()  | 
class operator - (const A, B: TVector2Integer): TVector2Integer; inline; | 
| 
 This item has no description.  | |
![]()  | 
class operator - (const V: TVector2Integer): TVector2Integer; inline; | 
| 
 This item has no description.  | |
![]()  | 
function ToString: string; | 
| 
 This item has no description.  | |
![]()  | 
function IsZero: boolean; inline; | 
| 
 This item has no description.  | |
![]()  | 
class function Equals(const V1, V2: TVector2Integer): boolean; static; inline; | 
| 
 This item has no description.  | |
![]()  | 
class function Zero: TVector2Integer; static; inline; | 
| 
 This item has no description.  | |
Properties
![]()  | 
property AsArray [const Index: TIndex]: Integer read GetItems; | 
| 
 
Get vector components by index. This is a default property, so you can write  But note that this is not writeable (because exposing writeable properties on vectors would cause some subtle traps, see https://castle-engine.io/coding_traps ). Use   | |
Generated by PasDoc 0.16.0-snapshot.
