vivid/README.md
2016-12-21 13:34:16 +13:00

840 B

Vivid

Vivid is a simple 2D rendering library.

I plan to use it to render polygons for display on a monochrome 128x64 OLED display from Adafruit.

I've never done any graphics programming before, so I'm working my way through the 2D portions of this tutorial and implementing them in Elixir as I go.

Expect this library to take a while to stabilise.

Installation

If available in Hex, the package can be installed as:

  1. Add vivid to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:vivid, "~> 0.1.0"}]
end
```
  1. Ensure vivid is started before your application:
```elixir
def application do
  [applications: [:vivid]]
end
```