Skip to content

Instantly share code, notes, and snippets.

@brookesi
brookesi / gist:6593166
Created September 17, 2013 11:36
Spline Calculation in Lua
-- Spline.lua
--
function class()
return setmetatable({}, {
__call = function(self, ...)
self:init(...)
return self
end
@brookesi
brookesi / gist:6593116
Last active July 19, 2017 07:27
Jumper Pathfinding Library for Codea Users
--[[
Ported 17th September 2013 by Simon Brooke
Original code: https://github.com/Yonaba/Jumper
*** Copyright notice below must not be removed ***
Porting notes:
- All modules have been scrunched into the one file under
a Jumper namespace, see example at end