root/trunk/as2/lib/com/modestmaps/core/Bounds.as
| Revision 292, 212 bytes (checked in by migurski, 1 year ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | /* |
| 2 | * $Id$ |
| 3 | */ |
| 4 | |
| 5 | import flash.geom.Point; |
| 6 | |
| 7 | class com.modestmaps.core.Bounds |
| 8 | { |
| 9 | var min:Point, max:Point; |
| 10 | |
| 11 | function Bounds(min:Point, max:Point) |
| 12 | { |
| 13 | this.min = min; |
| 14 | this.max = max; |
| 15 | } |
| 16 | } |
Note: See TracBrowser for help on using the browser.
