Class TDoubleList
Unit
CastleUtils
Declaration
type TDoubleList = class(specialize TStructList<Double>)
Description
No description available, ancestor TStructList description follows
List of structures. This is just TList class from Generics.Collections, with some useful helpers.
Hierarchy
Overview
Methods
Description
Methods
 |
procedure Assign(const Source: TSingleList); overload; |
Assign value from TSingleList, converting to single-precision.
|
 |
procedure AssignLerp(const Fraction: Double; const V1, V2: TDoubleList); |
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.
|