GithubHelp home page GithubHelp logo

Problems with zoom about draw2d HOT 5 OPEN

freegroup avatar freegroup commented on August 20, 2024
Problems with zoom

from draw2d.

Comments (5)

phiferd avatar phiferd commented on August 20, 2024 1

Not sure if this is the same issue, but there is a bug in the wheel zoom policy.

This line calls _zoom with three parameters (zoom, centerX, centerY):

https://github.com/freegroup/draw2d/blob/master/src/policy/canvas/WheelZoomPolicy.js#L127

But _zoom expects two parameters (zoom, centerPoint).

from draw2d.

freegroup avatar freegroup commented on August 20, 2024

I understand the first part of the ticket (width instead of Height)...but the second part is not clear to me.
Can you please explain it in more detail?

from draw2d.

Demak avatar Demak commented on August 20, 2024

Hi, it was quite a while ago, but as far as I can remember the problem in second part is that in setDimension we are calling this.setZoom with the first argument being zoomFactor of canvas, which after being passed to WheelZoomPolicy's zoom handler is checked for equality with itself in that condition and thus condition will always be true.
Here is a flow:

this.setZoom(this.zoomFactor, false)

this.zoomPolicy.setZoom(zoomFactor, animated)

this._zoom(zoomFactor, {x: centerX, y: centerY})

if (zoom === canvas.zoomFactor) {

in the end zoom and canvas.zoomFactor is the same variable. Thus there is no actions from WheelZoomPolicy's zoom handler on changing dimensions and as far as I can remember the problem was that zoom is reset to 1:1 in the start of setDimension but because of that condition was not applied back in the end.

Unfortunately I don't remember how I thought to fix it, haven't worked with draw2d for a while.

from draw2d.

freegroup avatar freegroup commented on August 20, 2024

I got it. Try to fix it

from draw2d.

acrimu avatar acrimu commented on August 20, 2024

I'm trying to use WeelZoomPolicy but I have some problems.

  1. If I try to use
canvas.installEditPolicy(new draw2d.policy.canvas.WheelZoomPolicy({
    onMouseWheel: function(){
      // This is a <span>
      $("#draw2d_canvas_zoom").text(canvas.getZoom());
    }
  }));

I get in console

WheelZoomPolicy.js:159 Uncaught TypeError: Cannot read property 'zoomFactor' of null
    at Class._zoom (WheelZoomPolicy.js:159)
    at step (WheelZoomPolicy.js:137)
    at t.value (shifty.js:2)
    at shifty.js:2

from draw2d.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.