Class TSingleList
Unit
CastleUtils
Declaration
type TSingleList = class(specialize TFPGList<Single>)
Description
Hierarchy
Overview
Methods
Description
Methods
 |
procedure Assign(Source: TDoubleList); overload; |
Assign value from TDoubleList, converting to double-precision.
|
 |
procedure AssignLerp(const Fraction: Single; V1, V2: TSingleList; Index1, Index2, ACount: Integer); |
Assign linear interpolation between two other float arrays. We take ACount items, from V1[Index1 ... Index1 + ACount - 1] and V2[Index2 ... Index2 + ACount - 1], and interpolate between them like normal Lerp functions.
It's Ok for both V1 and V2 to be the same objects. But their ranges should not overlap, for future optimizations (although it's Ok for current implementation).
|
 |
procedure AddListRange(Source: TSingleList; Index, AddCount: Integer); |
|
 |
procedure AddArray(const A: array of Single); |
|
 |
function L: PSingle; |
|
Generated by PasDoc 0.12.1 on 2013-02-04 20:26:53
|