isIdentity

matrix3d:isIdentity() --> booleano

Restituisce vero se la matrice รจ una matrice identica. Restituisce falso altrimenti.

Esempio. Esempio isIdentity()

local mat = Matrix3d({1, 0, 0, 0,   0, 1, 0, 0,   0, 0, 1, 0,  0, 0, 0, 1})
local res = mat:isIdentity() --> true

Created with the Personal Edition of HelpNDoc: Free EBook and documentation generator