Skip to content

Commit

Permalink
Merge pull request #12663 from MagnuzBinder/patch-3
Browse files Browse the repository at this point in the history
fix index error in example
  • Loading branch information
mrdoob authored Nov 15, 2017
2 parents c7162c6 + 89a9447 commit af7e865
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/api/core/Geometry.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ <h3>[property:Array skinIndices]</h3>
In code another example could look like this:
<code>
// e.g.
geometry.skinIndices[15] = new THREE.Vector4( 0, 5, 9, 0 );
geometry.skinWeights[15] = new THREE.Vector4( 0.2, 0.5, 0.3, 0 );
geometry.skinIndices[15] = new THREE.Vector4( 0, 5, 9, 10 );
geometry.skinWeights[15] = new THREE.Vector4( 0.2, 0.5, 0.3, 0 );

// corresponds with the following vertex
geometry.vertices[15];
Expand Down

0 comments on commit af7e865

Please sign in to comment.