Skip to content

Commit

Permalink
Merge pull request #6 from geocrystal/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
mamantoha authored Oct 20, 2023
2 parents 233c6f1 + 95d798f commit cc94a83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019-2022 Anton Maminov
Copyright (c) 2019-2023 Anton Maminov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: convex_hull
version: 0.5.0
version: 0.6.0

authors:
- Anton Maminov <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/convex_hull/algorithm.cr
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module ConvexHull
include Enumerable(Point)
include Iterable(Point)

getter convex_hull : Array(Point)
@convex_hull : Array(Point)

def initialize(points : Array(Tuple(Int32 | Float32 | Float64, Int32 | Float32 | Float64)))
raise "There must be at least 3 points" if points.size < 3
Expand Down

0 comments on commit cc94a83

Please sign in to comment.