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' | |
| # point | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class Point < 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 | |
| require 'propane' | |
| # line | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class Line < 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 | |
| require 'propane' | |
| # basic shapes | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class BasicShapes < 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 |
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' | |
| # 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' | |
| # 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' | |
| # 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' | |
| # 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' | |
| # control your drawing order | |
| # propane graffiti by 8mana | |
| # based on code by Casey Reas and Ben Fry | |
| class DrawingOrder < Propane::App | |
| def settings |