Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dbankier/TiVinci
A faster Titanium (iOS) Paint Module
https://github.com/dbankier/TiVinci
Last synced: about 1 month ago
JSON representation
A faster Titanium (iOS) Paint Module
- Host: GitHub
- URL: https://github.com/dbankier/TiVinci
- Owner: dbankier
- License: other
- Created: 2012-08-06T08:31:06.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-08-06T23:19:28.000Z (over 12 years ago)
- Last Synced: 2024-11-15T16:23:28.871Z (about 1 month ago)
- Language: Objective-C
- Size: 226 KB
- Stars: 42
- Watchers: 12
- Forks: 17
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TiVinci
=======A faster alternative to Appcelerator's Paint Module.
Background
----------I while back I forked the Appcelerator's paint module and started
adding features, e.g. bezier smoothing, dynamic width, edge blurring,
shapes, etc. It got to a point where the basic implementation was not
fast enough for uses like this: [WiDraw](http://www.youtube.com/watch?v=vWEqFQ6kkN0&feature=plcp).
(They use `drawInRect` - that said, I
haven't followed the module in some time, so things may have improved
since then.) So TiVinci was born which is rewrite of the
module with all the same features added in my fork.How To
------Have a look at the `example`.
In a nuthshell the module supports the following.
* Properites: `strokeColor`, `strokeWidth`, `strokeAlpha`,
`strokeDynamic`, `blurredEdges`* `drawMode`: `ERASE`, `CURVE_LINE`, `STRAIGHT_LINE`, `CIRCLE`,
`RECTANGLE`* Methods: `clear()`, `undo()`
* eventListener: `draw`