-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
116 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Affine Shear on the Y-Axis | ||
|
||
* [rarely breaking] Extended `Affine` to also support shearing on the | ||
y-axis (previously, only x-axis was possible). This feature can be used | ||
via e.g. ``Affine(shear={"x": (-30, 30), "y": (-10, 10)})``. If instead | ||
a single number is used (e.g. ``Affine(shear=15)``), shearing will be done | ||
only on the x-axis. If a single ``tuple``, ``list`` or | ||
``StochasticParameter`` is used, the generated samples will be used | ||
identically for both the x-axis and y-axis (this is consistent with | ||
translation and scaling). To get independent random samples per axis use | ||
the dictionary form. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters