Procházet zdrojové kódy

forcegraph: use setTransform instead of resetTransform

Nils Schneider před 8 roky
rodič
revize
8e1e698849
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      lib/forcegraph.js

+ 1 - 1
lib/forcegraph.js

@@ -403,7 +403,7 @@ define(["d3"], function (d3) {
       canvas.height = el.offsetHeight * r
       canvas.style.width = el.offsetWidth + "px"
       canvas.style.height = el.offsetHeight + "px"
-      ctx.resetTransform()
+      ctx.setTransform(1, 0, 0, 1, 0, 0)
       ctx.scale(r, r)
       requestAnimationFrame(redraw)
     }