unveil
unveil copied to clipboard
A data-driven visualization toolkit
http://docs.quasipartikel.at/#/unveil => 503 Service Temporarily Unavailable If there is an active demo page it would be good to update the link at the top of the github page.
default order is: 1. translate 2. rotate 3. scale ``` uv.Actor.prototype.tWorld = function() { return uv.Matrix() .concat(this.tWorldParent()) .translate(this.p('x'), this.p('y')) .rotate(this.p('rotation')) .scale(this.p('scaleX'), this.p('scaleY')); }; ```
E.g. ``` // Remove a specific node scene.remove('frank'); // Remove all actors with an x-value greater than 10 scene.remove(function(a) {return a.properties.x > 10); }); // Replace a certain actor with...
Eg.: ``` scene.add('kevin', new uv.Bar({}); scene.get('kevin').add(new uv.Label({text: 'Kevin')); scene.get('kevin').p('rotation', uv.PI/2); ```