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
| #!/usr/bin/env jruby | |
| # frozen_string_literal: false | |
| require 'propane' | |
| # lotus | |
| # propane graffiti by 8mana | |
| # based on code by Melissa Wiederreccht | |
| class Flower < Propane::App | |
| include_package 'processing.opengl.*' |
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
| #!/usr/bin/env jruby | |
| # frozen_string_literal: false | |
| require 'propane' | |
| # draw smooth lines | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class SmoothLines < Propane::App | |
| def settings |
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
| #!/usr/bin/env jruby | |
| # frozen_string_literal: false | |
| require 'propane' | |
| # put it in reverse | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class Reverse < Propane::App | |
| def settings |
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
| #!/usr/bin/env jruby | |
| # frozen_string_literal: false | |
| require 'propane' | |
| # control your drawing order | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class DrawingOrder < Propane::App | |
| def settings |
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
| #!/usr/bin/env jruby | |
| # frozen_string_literal: false | |
| require 'propane' | |
| # degrees | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class Degrees < Propane::App | |
| def settings |
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
| #!/usr/bin/env jruby | |
| # frozen_string_literal: false | |
| require 'propane' | |
| # part ellipse | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class Part_Ellipse < Propane::App | |
| def settings |
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
| #!/usr/bin/env jruby | |
| # frozen_string_literal: false | |
| require 'propane' | |
| # ellipse | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class Ellipse < Propane::App | |
| def settings |
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
| #!/usr/bin/env jruby | |
| # frozen_string_literal: false | |
| require 'propane' | |
| # make an object | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class MakeObject < Propane::App | |
| def settings |
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
| #!/usr/bin/env jruby | |
| # frozen_string_literal: false | |
| require 'propane' | |
| # rectangle | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class Rectangle < Propane::App | |
| def settings |
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
| #!/usr/bin/env jruby | |
| # frozen_string_literal: false | |
| require 'propane' | |
| # owls of different sizes | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class SizeOwls < Propane::App | |
| def settings |