question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Setting Graphics x, y values not consistent with first render (pixi.js: ^4.3.0)

See original GitHub issue

Running live here https://alex-wilmer.github.io/pixitest/

https://github.com/alex-wilmer/pixitest/blob/master/src/index.js

I’ve created 3 Text nodes and 3 Graphics (circles). I’m using the exact same dynamic scale (d3.scaleLinear) to zoom in, and reset on button clicks.

When I click the “zoom” button, the Text nodes behave as I would suspect, expanding to the right a bit, and hitting “reset” puts them back where they started.

The Graphics, on the other hand, jump much further as if it was on its own larger stage, interestingly enough, hitting “zoom” doesn’t set them back to their original position, but what seems to be original on this odd larger scale.

let ticks = []

let drawCircles = ({ data, scaleX, scaleY }) => {
  for (let [k, v] of data) {
    let [x, y] = xy(k)

    v.graphic = circle({
      color: 0x123456,
      x: scaleX(x),
      y: scaleY(y),
      r: 4,
    })

    stage.addChild(v.graphic)

    let sx = scaleX(x)
    let txt = text(sx)
    txt.x = sx
    txt.y = 10
    stage.addChild(txt)
    ticks.push({ x, text: txt })
  }
}

let mutateCircles = ({ data, scaleX }) => {
  for (let [k, v] of data) {
    let [x, y] = xy(k)

    // use the exact same scaleX(x) value for graphic.x and text.x
    v.graphic.x = scaleX(x)
    ticks.find(q => q.x === x).text.x = scaleX(x)
  }
}

code that creates the renderer. https://github.com/alex-wilmer/pixitest/blob/master/src/view.js

I’ve tried forcing webgl and canvas and get the same behaviour for both.

circle function, nothing fancy here:

https://github.com/alex-wilmer/pixitest/blob/master/src/circle.js

import { Graphics } from 'pixi.js'

export default ({
  color,
  x,
  y,
  r,
}) => {
  let s = new Graphics()

  s.beginFill(color)
  s.drawCircle(x, y, r)
  s.endFill()

  return s
}

Let me know if I can add anything else, or help out in any ways.

oh and if someone can tell me why it’s so blurry, that would be great too, thanks.

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:14

github_iconTop GitHub Comments

3reactions
staff0rdcommented, Jan 3, 2017
0reactions
lock[bot]commented, Feb 24, 2019

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Setting Graphics x, y values not consistent with first render ...
I've tried forcing webgl and canvas and get the same behaviour for both. circle function, nothing fancy here: https://github.com/alex-wilmer/ ...
Read more >
PIXI.Graphics - PixiJS API Documentation
The Graphics class is primarily used to render primitive shapes such as lines, circles and rectangles to the display, and to color and...
Read more >
Scene Graph - PixiJS
Every frame, PixiJS is updating and then rendering the scene graph. ... Even though each sprite's properties are set to the same values,...
Read more >
A High-performance Web Graphics Library-based Automatic ...
graphic rendering technologies like Scalable Vector Graphics (SVG) and Canvas. ... Keywords: Data Visualization, WebGL, AIS, PixiJS, D3.js ...
Read more >
Building an Images Gallery using PixiJS and WebGL
Add the PixiJS library as a script in the HTML. Have a <canvas> element (or add it dynamically from Javascript), to render the...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found