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
| import haxe.macro.Context; | |
| import haxe.macro.Expr; | |
| import haxe.macro.Type; | |
| using Lambda; | |
| /** | |
| Old school abstract class. | |
| Classes that implements it, and their sub-classes, will be able to declare abstract methods (methods that without body). | |
| There will be a check in compile-time such that no public constructor is allowed without all abstract methods implemented. | |
| */ |
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
| #============================================================== | |
| # .picasa.ini FILE STRUCTURE | |
| # | |
| # reverse-engineered by Franz Buchinger <fbuchinger@gmail.com> | |
| # licensed to the public domain | |
| # | |
| # Picasa Version(s): 3.8.0 | |
| # | |
| # Changelog: | |
| # v0.1: initial release |
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
| /* | |
| Implements different bin packer algorithms that use the MAXRECTS data structure. | |
| See http://clb.demon.fi/projects/even-more-rectangle-bin-packing | |
| Author: Jukka Jylänki | |
| - Original | |
| Author: Claus Wahlers | |
| - Ported to ActionScript3 |
NewerOlder