fixed up drawBorder debug border for caching

This commit is contained in:
Eric Rowell 2014-03-26 23:11:46 -07:00
parent 06c14f29f1
commit c96b076932
5 changed files with 788 additions and 382 deletions

View File

@ -1,6 +1,6 @@
{
"name": "KineticJS",
"version": "5.0.1",
"version": "5.0.2",
"homepage": "http://kineticjs.com/",
"authors": [
"Eric Rowell"

1138
kinetic.js

File diff suppressed because it is too large Load Diff

10
kinetic.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -180,14 +180,6 @@
sceneContext.save();
hitContext.save();
sceneContext.translate(x * -1, y * -1);
hitContext.translate(x * -1, y * -1);
if (this.nodeType === 'Shape') {
sceneContext.translate(this.x() * -1, this.y() * -1);
hitContext.translate(this.x() * -1, this.y() * -1);
}
// this will draw a red border around the cached box for
// debugging purposes
if (drawBorder) {
@ -201,6 +193,14 @@
sceneContext.restore();
}
sceneContext.translate(x * -1, y * -1);
hitContext.translate(x * -1, y * -1);
if (this.nodeType === 'Shape') {
sceneContext.translate(this.x() * -1, this.y() * -1);
hitContext.translate(this.x() * -1, this.y() * -1);
}
this.drawScene(cachedSceneCanvas, this);
this.drawHit(cachedHitCanvas, this);

View File

@ -2903,7 +2903,7 @@ suite('Node', function() {
var layer = new Kinetic.Layer();
var group = new Kinetic.Group();
var circle = new Kinetic.Circle({
x: 74,
x: 200,
y: 74,
radius: 70,
fill: 'green',
@ -2942,7 +2942,7 @@ suite('Node', function() {
//console.log(circle._cache.canvas.scene.getContext().getTrace());
// make sure the border rectangle was drawn onto the cached scene canvas
//assert.equal(circle._cache.canvas.scene.getContext().getTrace(),'save();translate(74,74);beginPath();arc(0,0,70,0,6.283,false);closePath();fillStyle=green;fill();lineWidth=4;strokeStyle=black;stroke();restore();save();beginPath();rect(0,0,148,148);closePath();strokeStyle=red;lineWidth=5;stroke();restore();');
assert.equal(circle._cache.canvas.scene.getContext().getTrace(),'save();save();beginPath();rect(0,0,148,148);closePath();strokeStyle=red;lineWidth=5;stroke();restore();translate(74,74);translate(-200,-74);save();transform(1,0,0,1,200,74);beginPath();arc(0,0,70,0,6.283,false);closePath();fillStyle=green;fill();lineWidth=4;strokeStyle=black;stroke();restore();restore();');
});
test('cache group', function(){