Skip to content

Commit

Permalink
increase input sizes and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lischilpp committed Jun 21, 2024
1 parent 4b2266e commit 4106fc0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ You can enter any arbitrary numbers for the four matrix values, and the resultin
[Interactive Page](https://lischilpp.github.io/Linear-Transformation-Plotter)

# Screenshots
![](screenshots/identity.png)
![](screenshots/skew_y.png)
![](screenshots/mirror_x.png)
<img src="screenshots/identity.png" width="300" />
<img src="screenshots/skew_y.png" width="300" />
<img src="screenshots/mirror_x.png" width="300" />

4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
}

input {
width: 50px;
width: 80px;
font-size: 32px;
text-align: center;
}
</style>

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var F = [
new vec(1, 1)
]

var scale = 20; // scaling of the shape
var scale = 30; // scaling of the shape
var can, ctx, halfWidth, halfHeight;

var a11, a12, a21, a22
Expand Down

0 comments on commit 4106fc0

Please sign in to comment.