Record TVector3Integer

Unit

Declaration

type TVector3Integer = record

Description

Vector of 3 Integer values.

Overview

Internal Types

TIndex = 0..2;

Fields

var Data: array [TIndex] of Integer;
internal const Zero: TVector3Integer = (Data: (0, 0, 0));

Methods

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

Properties

property Items [constIndex:TIndex]: Integer read GetItems write SetItems;
property X: Integer index 0 read GetItemsInt write SetItemsInt;
property Y: Integer index 1 read GetItemsInt write SetItemsInt;
property Z: Integer index 2 read GetItemsInt write SetItemsInt;

Description

Internal Types

TIndex = 0..2;
 

Fields

var Data: array [TIndex] of Integer;
 
internal const Zero: TVector3Integer = (Data: (0, 0, 0));
 

Methods

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

Properties

property Items [constIndex:TIndex]: Integer read GetItems write SetItems;
 
property X: Integer index 0 read GetItemsInt write SetItemsInt;
 
property Y: Integer index 1 read GetItemsInt write SetItemsInt;
 
property Z: Integer index 2 read GetItemsInt write SetItemsInt;
 

Generated by PasDoc 0.15.0.