Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.97 KB

readme.md

File metadata and controls

39 lines (32 loc) · 1.97 KB

This is a collection of useful Nim modules. The theme is Game Development. Examples of usage can usually be found at the end of the module's source or in the examples/ directory

If any of these is missing license (they probably all are) then you can treat 
them as public domain, no attribution required. Licenses listed below are for
the corresponding (wrapped) software. The wrapper itself does not fall under
this license.

Modules

  • fowltek/vector_math - implements types for vectors of two, three and four (now basic2d/basic3d exist in the stdlib, use those instead)
  • fowltek/pointer_arithm - implements pointer arithmetic for use with c libraries
  • fowltek/maybe_t - implements a Maybe[T]
  • fowltek/idgen - a simple sequential ID generator
  • fowltek/neural - a backpropagating neural network
  • Spatial organizationing: fowltek/bbtree, fowltek/qtree

Wrappers

Graphics

Physics

  • Bullet - another high performance 3D physics library. This wrapper may not be complete, it is based off Bullet's C-API which is limited.
  • fowltek/verlet - implementation of verlet physics

Other

Things that used to be here