Packages

An A-star 2D polygon map search implementation and library for Elixir

Current section

Files

Jump to
scurry lib types.ex~
Raw

lib/types.ex~

defmodule Scurry.Types do
defmacro __using__{_opts} do
@typedoc "A vector is represented as a tuple `{x, y}`, it's x and y components, both `t:number/0`."
@type vector() :: {x :: number(), y :: number()}
end
end