Skip to content

Commit

Permalink
Revert formatting change
Browse files Browse the repository at this point in the history
  • Loading branch information
7h3kk1d committed Dec 20, 2024
1 parent 896224d commit 3b3087b
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions src/haz3lweb/util/SvgUtil.re
Original file line number Diff line number Diff line change
Expand Up @@ -285,18 +285,10 @@ module OrthogonalPolygon = {
let min_max = Point.{x: min.x, y: max_y};
let max_min = Point.{x: max_x, y: min.y};
[
{
// left sides point in negative direction
src: min_max,
dst: min,
next: None,
},
{
// right sides point in positive direction
src: max_min,
dst: max,
next: None,
},
// left sides point in negative direction
{src: min_max, dst: min, next: None},
// right sides point in positive direction
{src: max_min, dst: max, next: None},
];
})
|> List.flatten
Expand Down

0 comments on commit 3b3087b

Please sign in to comment.