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
-- AirBrush | |
--[==[ | |
local Brush = cimport "Brush" | |
local AirBrush = class(Brush) | |
function AirBrush:init(tb) | |
Brush.init(self,"AirBrush",tb) | |
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
Library Base Tab Order | |
------------------------------ | |
This file should not be included in the Codea project. | |
#ChangeLog | |
#Main | |
#Rectangle | |
#Font | |
#Coordinates | |
#BinDecHex | |
#Colour |
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
Library Graphics Tab Order | |
------------------------------ | |
This file should not be included in the Codea project. | |
#ChangeLog | |
#Main | |
#Bezier | |
#Explosion | |
#Path | |
#TextNode | |
#View |
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
Library Maths Tab Order Version: 2.1 | |
------------------------------ | |
This file should not be included in the Codea project. | |
#ChangeLog | |
#Main | |
#Matrix | |
#Complex | |
#Quaternion | |
#Vec3 | |
#Vector |
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
Library Miscellaneous Tab Order Version: 2 | |
------------------------------ | |
This file should not be included in the Codea project. | |
#ChangeLog | |
#Main | |
#EuclideanPlane | |
#ComplexPlane | |
#Shape | |
#ShapeElements | |
#Shapes |
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
Library UI Tab Order | |
------------------------------ | |
This file should not be included in the Codea project. | |
#ChangeLog | |
#Main | |
#NumberSpinner | |
#CubicSelector | |
#PictureBrowser | |
#Keyboard | |
#Keypad |
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
Library Utilities Tab Order Version: 2 | |
------------------------------ | |
This file should not be included in the Codea project. | |
#ChangeLog | |
#Main | |
#Lengths | |
#Boolean | |
#MathsUtilities | |
#MeshUtilities | |
#RoundedRectangle |
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
--[[ | |
v0.1.0: (5/21/2013) | |
* added search path for locating relative module paths; search path can be | |
set/inspected using cmodule.path(); pass no args for a list of projects in the path, | |
or pass a variable list of projects, i.e. cmodule.path("project1", "project2", "project3"). | |
search path may only be set once. | |
* added optional fallback project param to cimport/cload and cmodule.loaded/exists/unload; | |
if a module is not found in the running project or in the search path, an attempt will | |
be made to load from the fallback project if specified. |
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
3D Demonstration Tab Order Version: 1.4 | |
------------------------------ | |
This file should not be included in the Codea project. | |
#Main |
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
--3D Demonstration Single Install | |
--Installer created by @Briarfox | |
--- This will pull the 3D Demonstration project into Codea for you | |
-- Instructions: | |
-- * Create a new project in Codea named 3D Demonstration If you chose another name please change the variable Below | |
--This is case sensitive | |
ProjectName = "3D Demonstration" | |
-- * Paste this into the Main (not from the raw view, as iSafari will escape special characters) | |
-- * Make sure there is a single tab in the project |
OlderNewer