mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
Add polyline strokeLinecap strokeLinejoin example
This commit is contained in:
@@ -51,10 +51,7 @@ export default class {
|
||||
};
|
||||
|
||||
scale = (x, y) => {
|
||||
if (y == null) {
|
||||
y = x;
|
||||
}
|
||||
return this.transform(x, 0, 0, y, 0, 0);
|
||||
return this.transform(x, 0, 0, y == null ? x : y, 0, 0);
|
||||
};
|
||||
|
||||
rotate = (deg, x, y) => {
|
||||
|
||||
Reference in New Issue
Block a user