Packed Record TVector4Integer

Unit

Declaration

type TVector4Integer = packed record

Description

Vector of 4 Integer values.

Overview

Nested Types

Public TIndex = 0..3;

Fields

Public X: Integer
Public Y: Integer
Public Z: Integer
Public W: Integer
Public Data: array [TIndex] of Integer
Public XY: TVector2Integer;
Public ZW: TVector2Integer
Public XYZ: TVector3Integer

Methods

Public class operator + (const A, B: TVector4Integer): TVector4Integer; inline;
Public class operator - (const A, B: TVector4Integer): TVector4Integer; inline;
Public class operator - (const V: TVector4Integer): TVector4Integer; inline;
Public function ToString: string;
Public function IsZero: boolean; inline;
Public class function Equals(const V1, V2: TVector4Integer): boolean; static; inline;
Public class function Zero: TVector4Integer; static; inline;

Properties

Public property AsArray [const Index: TIndex]: Integer read GetItems;

Description

Nested Types

Public TIndex = 0..3;

This item has no description.

Fields

Public X: Integer

This item has no description.

Public Y: Integer

This item has no description.

Public Z: Integer

This item has no description.

Public W: Integer

This item has no description.

Public Data: array [TIndex] of Integer

This item has no description.

Public XY: TVector2Integer;

This item has no description.

Public ZW: TVector2Integer

This item has no description.

Public XYZ: TVector3Integer

This item has no description.

Methods

Public class operator + (const A, B: TVector4Integer): TVector4Integer; inline;

This item has no description.

Public class operator - (const A, B: TVector4Integer): TVector4Integer; inline;

This item has no description.

Public class operator - (const V: TVector4Integer): TVector4Integer; inline;

This item has no description.

Public function ToString: string;

This item has no description.

Public function IsZero: boolean; inline;

This item has no description.

Public class function Equals(const V1, V2: TVector4Integer): boolean; static; inline;

This item has no description.

Public class function Zero: TVector4Integer; static; inline;

This item has no description.

Properties

Public property AsArray [const Index: TIndex]: Integer read GetItems;

Get vector components by index. This is a default property, so you can write MyVector[0] instead of MyVector.Data[0] or MyVector.AsArray[0].

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 MyVector.Data[0] := 123 if you want to set by index, or MyVector.X := 123.


Generated by PasDoc 0.16.0-snapshot.