Class TVector4List
Unit
CastleVectors
Declaration
type TVector4List = class(specialize TStructList<TVector4>)
Description
List of TVector4.
Hierarchy
Overview
Methods
Description
Methods
 |
procedure AddSubRange(const Source: TVector4List; Index, AddCount: Integer); |
|
 |
procedure AddListRange(const Source: TVector4List; 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
- EListsDifferentCount
- If V1 and V2 have different count.
|
 |
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(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.15.0.
|