1 / 3

ThreeJS Matrix Tranformation - TAE

Three.js encodes 3D transformations using matrices for translations (position), rotations, and scaling. Every Object3D instance has a matrix that records the object's location, rotation, and scale. This page explains how to change the transformation of an item.

Himaani
Download Presentation

ThreeJS Matrix Tranformation - TAE

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ThreeJS Matrix TRANSFORMATION www.tutorialandexample.com

  2. Three.js encodes 3D transformations using matrices for translations (position), rotations, and scaling. Every Object3D instance has a matrix that records the object's location, rotation, and scale.

  3. Convenience properties and matrixAutoUpdate There are two ways to update the transformation of an object: 1. Change the object's location, quaternion, and scale attributes, and three.js will recalculate the object's matrix 2. Directly alter the object's matrix. There are several methods for altering the matrix in the Matrix4 class

More Related