https://github.com/tgfrerer/ofxdeltatracker
A very lightweight, type-agnostic helper. Returns the change of a tracked value since the last update().
https://github.com/tgfrerer/ofxdeltatracker
Last synced: over 1 year ago
JSON representation
A very lightweight, type-agnostic helper. Returns the change of a tracked value since the last update().
- Host: GitHub
- URL: https://github.com/tgfrerer/ofxdeltatracker
- Owner: tgfrerer
- Created: 2012-03-09T12:30:15.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-03-09T13:34:11.000Z (over 14 years ago)
- Last Synced: 2025-01-20T23:48:34.679Z (over 1 year ago)
- Language: C++
- Homepage: http://poniesandlight.co.uk/code/ofxDeltaTracker/
- Size: 93.8 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
_____ ___
/ / / / ofxDeltaTracker
/ __/ * / /__ (c) ponies & light, 2009-2012.
/__/ /_____/ poniesandlight.co.uk
ofxDeltaTracker
Created by Tim Gfrerer, 2012.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
# ofxDeltaTracker
A very lightweight, type-agnostic helper. Returns the change of a tracked value since the last update().
## Motivation
This is useful when converting absolute movement to relative movement,
e.g. when using ofNode.move() instead of ofNode.setPosition();
In this case, using multiple ofxDeltaTracker[s] for one ofNode allows you to
combine multiple relative movements. [see example project]
## Example
See included example project.
### Reference Render

## See also
* [ofxPlaylist](https://github.com/tgfrerer/ofxPlaylist): ofxDeltaTracker helps greatly in animating ofNode based Objects.
## Dependencies
None