Skip to content

printMatrix_

villares edited this page May 24, 2020 · 4 revisions

Nome

printMatrix()

Exemplos

size(100, 100, P3D); 
printMatrix(); 
// Imprime: 
// 01.0000  00.0000  00.0000 -50.0000 
// 00.0000  01.0000  00.0000 -50.0000 
// 00.0000  00.0000  01.0000 -86.6025 
// 00.0000  00.0000  00.0000  01.0000 
 
resetMatrix(); 
printMatrix(); 
// Imprime: 
// 1.0000  0.0000  0.0000  0.0000 
// 0.0000  1.0000  0.0000  0.0000 
// 0.0000  0.0000  1.0000  0.0000 
// 0.0000  0.0000  0.0000  1.0000 

Descrição

Imprime a matiz corrente na janela de texto do console.

Sintaxe

printMatrix()

Retorno

Nenhum

Utilização

Web & Applicações

Relacionado

pushMatrix()

popMatrix()

resetMatrix()

applyMatrix()

Clone this wiki locally