Skip to content

Commit

Permalink
feat: build
Browse files Browse the repository at this point in the history
  • Loading branch information
F-star committed Jan 20, 2024
1 parent d98088d commit e56c682
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion docs/assets/index-JLnLro5i.js

This file was deleted.

1 change: 1 addition & 0 deletions docs/assets/index-XXZR8875.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
border: 1px solid #000;
}
</style>
<script type="module" crossorigin src="./assets/index-JLnLro5i.js"></script>
<script type="module" crossorigin src="./assets/index-XXZR8875.js"></script>
</head>
<body>
<div style="display: flex">
Expand Down
6 changes: 3 additions & 3 deletions src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,9 +365,9 @@ function getVectorRadian(
return radian;
}

function rad2deg(rad: number) {
return (rad * 180) / Math.PI;
}
// function rad2deg(rad: number) {
// return (rad * 180) / Math.PI;
// }

function crossProduct(v1: Point, v2: Point): number {
return v1.x * v2.y - v2.x * v1.y;
Expand Down

0 comments on commit e56c682

Please sign in to comment.