mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-30 21:49:31 +00:00
Merge remote-tracking branch 'matrixfix/patch-1' into 5.3.0-conformance
This commit is contained in:
+1
-1
@@ -83,7 +83,7 @@ export default class Matrix2D {
|
||||
this.a = a == null ? 1 : a;
|
||||
this.b = b || 0;
|
||||
this.c = c || 0;
|
||||
this.d = b == null ? 1 : d;
|
||||
this.d = d == null ? 1 : d;
|
||||
this.tx = tx || 0;
|
||||
this.ty = ty || 0;
|
||||
return this;
|
||||
|
||||
Reference in New Issue
Block a user