System.Math.Vectors.TMatrix.EqualsTo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function EqualsTo(const AMatrix: TMatrix; const Epsilon: Single = TEpsilon.Matrix): Boolean;

C++

bool __fastcall EqualsTo(const TMatrix &AMatrix, const float Epsilon = 1.000000E-05f);

Properties

Type Visibility Source Unit Parent
function public
System.Math.Vectors.pas
System.Math.Vectors.hpp
System.Math.Vectors TMatrix

Description

Returns True if all the values of your matrix are the same as the values of the specified matrix, using the specified epsilon error threshold; it returns False otherwise.

See Also