-
Notifications
You must be signed in to change notification settings - Fork 24.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simulate skew on Android #42676
base: main
Are you sure you want to change the base?
Simulate skew on Android #42676
Conversation
Base commit: ea3a714 |
This is dope! Nice work @piaskowyk 🔥 |
This is really neat 🙂. Not having played much around this area before, something I noticed when reading was that Android This seems kind of appealing, to not need to be constrained to the higher level view APIs, to simulate skew as different transforms, but I don't know if the API works, or results in any de-optimizations. Curious if this is an approach that has been tried before. |
This would be an alternative solution to #38494 |
@javache Do you require any additional information regarding this implementation from me? Or any way that I can help you. I aim to facilitate the merging process for you (of course if you want to merge it 😅) |
How to call after modifying the MatrixMathHelper.java file? Do you have the complete code? |
After modifying the MatrixMathHelper.java file, I don't know how to use it |
This PR is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
This PR is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
@javache, sorry for pinging 🙏 I just wanted to ask if there's a chance to merge this, or should we move the implementation to Reanimated? |
This is awesome! If the new calculations concern any performance, perhaps it would be an idea to add a new Gradle property or feature flag to allow React Native developers to opt in to these changes, until there is an alternative or better solution (if there is). (Fixes #27649) |
Summary:
This PR aims to address the issue of lacking a direct API for setting skew on native views in Android.
Why does this problem exist?
The lack of an API on Android to directly set skew on native views is the reason behind this problem. It is not a problem specific to React Native itself, but rather an Android platform limitation. Android restricts direct manipulation of transformations. Skew can only be applied via public methods like
setRotation
,setScale
, orsetTranslation
.How is this problem solved?
While we cannot directly set the fields in the transformation matrix responsible for skew, we can employ an alternative matrix that produces an equivalent result. The idea behind this PR is to utilize a 3D rotation without perspective to simulate the skew effect. Let's examine an example involving a wall's block with the number 3.
3D rotation with perspective
3D rotation without perspective
By applying the appropriate 3D rotation without perspective, it is possible to achieve the desired skew effect.
Mathematical background
Skew transformation 2D
The skew transformation is an affine 2D matrix.


Rotation transformation 3D
Scale transformation 3D
Matrix multiplication
It is possible to use only Rotation and Scale transformation to achieve Skew 2D transformation.


Skew is only 2D transformation so we only need to consider the 2D matrix when simulating the skew effect.
SkewX
SkewY
The only thing you need to do is solve the formulas and calculate the rotation and scale values.
Solution
The matrix has an infinite number of solutions, so we can assume that one of the rotation axes has an arbitrary value to simplify the calculations.
SkewX
SkewY
Limitations
It is worth noting, that this transformation is not completely equivalent to skew. The matrix that is created by those 3d rotations (and scaling) is equal to the skew matrix only on its 2x2 sub-matrix. The other values in this matrix are however not the same as if they would be in the affine matrix for the skew transformation. This implies that this transformation will not interact well with other 3d transformations, since those additional values in the matrix, will be taken into account when multiplying with other matrices, creating a completely different matrix for 3d vectors. However when 2d transformations are used, this will behave correctly, since 2d vectors won't interact with those values during multiplication. We think that this behaviour is beneficial in comparison to the current situation.

Changelog:
[ANDROID][FIXED] Skew transformation
Test Plan:
skewX_before.mov
skewX_after.mov
skewY_before.mov
skewY_after.mov
Example code:
code
Co-authored with @bartlomiejbloniarz
Co-authored-by: Bartłomiej Błoniarz [email protected]