Class TMatrix4List

Unit

Declaration

type TMatrix4List = class(specialize TStructList<TMatrix4>)

Description

List of TMatrix4.

Hierarchy

Overview

Methods

Public procedure AssignLerp(const Fraction: Single; const V1, V2: TMatrix4List);
Public function Equals(SecondValue: TObject): boolean; override;
Public function PerfectlyEquals(SecondValue: TObject): boolean;

Description

Methods

Public procedure AssignLerp(const Fraction: Single; const V1, V2: TMatrix4List);

Assign linear interpolation between two other vector arrays.

Exceptions raised
EListsDifferentCount
If V1 and V2 have different count.
Public 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.

Public 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.