This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Spline.lua | |
-- | |
function class() | |
return setmetatable({}, { | |
__call = function(self, ...) | |
self:init(...) | |
return self | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
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 |