Hate alternatives and similar packages
Based on the "Graphics" category.
Alternatively, view Hate alternatives based on common mentions on social networks and blogs.
-
reanimate
Haskell library for building declarative animations based on SVG graphics -
implicit
A math-inspired CAD program in haskell. CSG, bevels, and shells; 2D & 3D geometry; 2D gcode generation... -
GPipe
Core library of new GPipe, encapsulating OpenGl and providing a type safe minimal library -
diagrams
Embedded domain-specific language for declarative vector graphics (wrapper package) -
log-warper
Logging library to provide more convenient, extremely configurable but simple monadic interface with pretty output -
timeplot
Analyst's swiss army knife for visualizing data from ad-hoc log files -
processing-for-haskell
Graphics for kids and artists. Processing implemented in Haskell -
GLUtil
Utility functions for working with OpenGL BufferObjects, GLSL shaders, and textures. -
graphics-drawingcombinators
Combinators for drawing 2D shapes and images in Haskell (using OpenGL)
Clean code begins in your IDE with SonarLint
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Hate or a related project?
Popular Comparisons
README
Häte
Hate is a small framework for graphical haskell games and applications. It's heavily inspired by Love and aims at similar ease of use, but within the power of Haskell's type and concurrency safety.
Hate features a pure 2D rendering API, backed by raw, low-level OpenGL, and a simple way to gather input from the user (via GLFW-b).
The samples
folder features a few examples on how to get started, but you have to consider the API to be extremely unstable and it's subject to change at any time.
Feel free to submit feature requests, opinions etc. through the GitHub issues system.
Installation
Hate is developed and tested using GHC. If you're a beginner, the easiest way to get it is Haskell Platform. You probably also want Git.
To verify the installation, do this:
$ ghc --version
The Glorious Glasgow Haskell Compilation System, version 7.8.3
$ cabal --version
cabal-install version 1.18.0.5
using version 1.18.1.3 of the Cabal library
If it looks similar (the numbers are bigger), then it's probably OK. To proceed, run those commands:
git clone https://github.com/bananu7/Hate.git
cd Hate
cabal sandbox init
cabal install --dependencies-only
cabal run sample_shapes
To use sandboxing functionality, you need a fairly recent Cabal, but it's highly recommended, as it helps to avoid a lot of problems. You can then install Hate into that sandbox by typing cabal install
.
The samples available at the time of writing are:
sample_shapes
sample_scheduler
sample_sprite
sample_spritesheet
sample_asteroids