Skip to content
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.

Commit

Permalink
Typo in rotation matrix
Browse files Browse the repository at this point in the history
Summary:
Thanks for submitting a PR! Please read these instructions carefully:

## Motivation (required)

The documentation has typo in representation of ration matrix, fixing it.  This fixes the issue #177

## Test Plan (required)

No test plan, as the change is in documentation.

If you have added code that should be tested, add tests.
Closes #184

Differential Revision: D5027505

fbshipit-source-id: 9c37e11
  • Loading branch information
bnaveenkr authored and facebook-github-bot committed May 9, 2017
1 parent fc01746 commit d50c961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/3DCoordinatesAndTransforms.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ transform: [

* translation is stored as `[1,0,0,0, 0,1,0,0, 0,0,1,0, Tx,Ty,Tz,1]`
* a scale is represented by `[Sx,0,0,0, 0,Sy,0,0, 0,0,Sz,0, 0,0,0,1]`
* rotation can be represented the R values in `[R00,R01,R01,0, R10,R11,R12,0, R20,R21,R22,0, 0,0,0,1]`
* rotation can be represented the R values in `[R00,R01,R02,0, R10,R11,R12,0, R20,R21,R22,0, 0,0,0,1]`

**`matrix`** is the most flexible way of handling transforms and allows developers to use their own JavaScript modules and still be able to interface with React components.

Expand Down

0 comments on commit d50c961

Please sign in to comment.