Skip to content

Instantly share code, notes, and snippets.

-- mathlib.lua
--[[
Maths extension library for use in Corona SDK by Matthew Webster.
All work derived from referenced sources.
twitter: @horacebury
blog: http://springboardpillow.blogspot.co.uk/2012/04/sample-code.html
code exchange: http://code.coronalabs.com/search/node/HoraceBury
github: https://gist.github.com/HoraceBury
------------------------------------------------------
-- Fireworks with meshes for Codea
-- v 1.0
-- Pepe, March 2015
--Touch the upper part of the screen to launch bombs
--Touch the lower part of the screen to launch rockets
------------------------------------------------------
--Main
@pepinganos
pepinganos / Match the Colors
Last active January 2, 2016 02:29
Board game for Codea. beta 1.0
--# HighScores
HighScore = class()
function HighScore:init(score, balls)
self.score = score
self.balls = balls
end
function HighScore:getValues()