Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manual/en/matrix-transformations.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h2>Convenience properties and `matrixAutoUpdate`</h2>
<li>
Modify the object's matrix directly. The `Matrix4` class has various methods for modifying the matrix:
<pre class="prettyprint notranslate lang-js" translate="no">
object.matrix.setRotationFromQuaternion( quaternion );
object.matrix.makeRotationFromQuaternion( quaternion );
object.matrix.setPosition( start_position );
object.matrixAutoUpdate = false;
</pre>
Expand Down
2 changes: 1 addition & 1 deletion manual/fr/matrix-transformations.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2>Propriétés de commodité et `matrixAutoUpdate`</h2>
<li>
Modifiez la matrice de l'objet directement. La classe `Matrix4` dispose de différentes méthodes pour modifier la matrice :
<pre class="prettyprint notranslate lang-js" translate="no">
object.matrix.setRotationFromQuaternion( quaternion );
object.matrix.makeRotationFromQuaternion( quaternion );
object.matrix.setPosition( start_position );
object.matrixAutoUpdate = false;
</pre>
Expand Down
2 changes: 1 addition & 1 deletion manual/zh/matrix-transformations.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h2>便捷属性与 `matrixAutoUpdate`</h2>
<li>
直接修改对象矩阵。`Matrix4` 提供了多种矩阵修改方法:
<pre class="prettyprint notranslate lang-js" translate="no">
object.matrix.setRotationFromQuaternion( quaternion );
object.matrix.makeRotationFromQuaternion( quaternion );
object.matrix.setPosition( start_position );
object.matrixAutoUpdate = false;
</pre>
Expand Down
Loading