Class TVector4List
Unit
Declaration
type TVector4List = class(specialize TStructList<TVector4>)
Description
List of TVector4. Note that the notification mechanism (OnNotify) is broken here by routines like AddRange and AddSubRange (for maximum speed).
Hierarchy
- TObject
- TList
- TStructList
- TVector4List
Overview
Methods
![]() |
procedure AddRange(const Source: TVector4List); |
![]() |
procedure AddSubRange(const Source: TVector4List; const Index, AddCount: Integer); |
![]() |
procedure AddListRange(const Source: TVector4List; const Index, AddCount: Integer); deprecated 'use AddSubRange'; |
![]() |
procedure AssignLerp(const Fraction: Single; const V1, V2: TVector4List); |
![]() |
function Equals(SecondValue: TObject): boolean; override; |
![]() |
function PerfectlyEquals(const SecondValue: TObject): boolean; |
Description
Methods
![]() |
procedure AddRange(const Source: TVector4List); |
![]() |
procedure AddSubRange(const Source: TVector4List; const Index, AddCount: Integer); |
![]() |
procedure AddListRange(const Source: TVector4List; const Index, AddCount: Integer); deprecated 'use AddSubRange'; |
|
Warning: this symbol is deprecated: use AddSubRange | |
![]() |
procedure AssignLerp(const Fraction: Single; const V1, V2: TVector4List); |
|
Assign linear interpolation between two other vector arrays. Exceptions raised
| |
![]() |
function Equals(SecondValue: TObject): boolean; override; |
|
Does the SecondValue have equal length and content. The values are compared with an Epsilon tolerance, as usual for floating-point values. | |
![]() |
function PerfectlyEquals(const SecondValue: TObject): boolean; |
|
Does the SecondValue have equal length and content. The values are compared perfectly, without any tolerance for difference. | |
Generated by PasDoc 0.16.0.
