Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alecmce/as3geometry
An ActionScript 3 Geometry Library
https://github.com/alecmce/as3geometry
Last synced: about 2 months ago
JSON representation
An ActionScript 3 Geometry Library
- Host: GitHub
- URL: https://github.com/alecmce/as3geometry
- Owner: alecmce
- Created: 2009-11-09T22:57:34.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2011-10-27T16:55:35.000Z (about 13 years ago)
- Last Synced: 2024-08-04T05:04:32.175Z (5 months ago)
- Language: ActionScript
- Homepage:
- Size: 1.39 MB
- Stars: 74
- Watchers: 9
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- awesome-actionscript-sorted - as3geometry - An ActionScript 3 Geometry Library (Utilities / Geometry)
README
AS3 Geometry is a place for me to place my geometry classes. Over the years I've created innumerable geometry implementations, and I am looking to create a definitive collection.
Principles:
# Types of objects are defined by interfaces
# Objects have at least one implementation which is immutable; the defining data are unchangable after construction.
# Objecst may have another implementation which is mutable. Mutable objects require an AS3GeometryContext injection. The context helps manage the invalidation of elements and their redrawing. This tweak removes the problem of updates happening on different frames.