This file contains 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
#!/usr/bin/env jruby | |
# frozen_string_literal: false | |
require 'propane' | |
# load more images | |
# propane graffiti by 8mana | |
# based on code by Casey Reas and Ben Fry | |
class LoadImages < Propane::App | |
def settings |
This file contains 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
#!/usr/bin/env jruby | |
# frozen_string_literal: false | |
require 'propane' | |
# load an image | |
# propane graffiti by 8mana | |
# based on code by Casey Reas and Ben Fry | |
class LoadImage < Propane::App | |
def settings |
This file contains 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
#!/usr/bin/env jruby | |
# frozen_string_literal: false | |
require 'propane' | |
# robot 3 | |
# propane graffiti by 8mana | |
# based on code by Casey Reas and Ben Fry | |
class RobotThree < Propane::App |
This file contains 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
#!/usr/bin/env jruby | |
# frozen_string_literal: false | |
require 'propane' | |
# move with arrow keys | |
# propane graffiti by 8mana | |
# based on code by Casey Reas and Ben Fry | |
class ArrowKeys < Propane::App | |
def settings |
This file contains 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
#!/usr/bin/env jruby | |
# frozen_string_literal: false | |
require 'propane' | |
# check for specific keys | |
# propane graffiti by 8mana | |
# based on code by Casey Reas and Ben Fry | |
class CheckKeys < Propane::App | |
def settings |
This file contains 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
#!/usr/bin/env jruby | |
# frozen_string_literal: false | |
require 'propane' | |
# draw some letters | |
# propane graffiti by 8mana | |
# based on code by Casey Reas and Ben Fry | |
class DrawLetters < Propane::App | |
def settings |
This file contains 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
#!/usr/bin/env jruby | |
# frozen_string_literal: false | |
require 'propane' | |
# tap a key | |
# propane graffiti by 8mana | |
# based on code by Casey Reas and Ben Fry | |
class TapKey < Propane::App | |
def settings |
This file contains 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
#!/usr/bin/env jruby | |
# frozen_string_literal: false | |
require 'propane' | |
# the bounds of a rectangle | |
# propane graffiti by 8mana | |
# based on code by Casey Reas and Ben Fry | |
class RectangleBounds < Propane::App | |
def settings |
This file contains 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
#!/usr/bin/env jruby | |
# frozen_string_literal: false | |
require 'propane' | |
# the bounds of a circle | |
# propane graffiti by 8mana | |
# based on code by Casey Reas and Ben Fry | |
class CircleBounds < Propane::App | |
def settings |
This file contains 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
#!/usr/bin/env jruby | |
# frozen_string_literal: false | |
require 'propane' | |
# find the cursor | |
# propane graffiti by 8mana | |
# based on code by Casey Reas and Ben Fry | |
class FindCursor < Propane::App | |
def settings |
NewerOlder