Dániel Gulyás
Dániel Gulyás
I tried to debug this the other day, it seems like it has to do something with [this method](https://github.com/ecomfe/echarts-gl/blob/1a1f66ea5fe525159302cf3507ef0fb85068c2ef/src/chart/common/PointsMesh.js#L51), the hovering doesn't work because the element (even if there is...
Worked a bit on this today, this is what seems to be happening: **When the mouse hits a node** 1. echarts detect the mousemove, dispatches an event 1. [LayerGL.onmousemove(e)](https://github.com/ecomfe/echarts-gl/blob/1a1f66ea5fe525159302cf3507ef0fb85068c2ef/src/core/LayerGL.js#L443) 1....
Here's some data, coming from a breakpoint on [this](https://github.com/pissang/claygl/blob/bc6d5dca37bfce5d27a416d75396365d3a6d8183/src/picking/RayPicking.js#L112) line from me moving my mouse around below: ```js // intersectBoundingBox(ray(direction, origin), bbox(min, max)) -> result intersectBoundingBox(ray([0,0,-1], [1115.3480872361913, 879.9872823400933, 0]), bbox([0.7593651413917542,0.021218599751591682,-10],[2047.2681884765625,513.910888671875,-10]))...
@pissang I figured out what this is, I was spot on above, it seems like the ray's location is outside graphGL's bounding box, this results in dropped picks. Either GraphGL's...
Hi, cool project! I'm interested on extending xi-electron and digging a bit into xi-editor, would an early try at the implementation with [PixiJS](http://www.pixijs.com/) be ok? I don't know much about...
@Gykonik: yeah, this sucks. I fixed this for myself, using [email protected] and [email protected], see [farnam.jazzware.io](https://farnam.jazzware.io) for a demo. Diff between [[email protected]](https://cdn.jsdelivr.net/npm/[email protected]/dist/echarts-gl.js) and [my version](https://farnam.jazzware.io/assets/echarts-gl-2.0.8.js): ```diff dani@skynet ~/d/p/i/f/s/s/assets (main)> diff echarts-gl-2.0.8-orig.js...
Thanks for your solution @yenche123, it works for me! This happened to me w/ nested lists w/ groups; same steps as yours (sort, then click on container after). I put...
Ran into the same problem, created [Wrappa](https://github.com/danigulyas/wrappa), at some cases it might be usable, hope it spares some of the inconveniences!:) Cheers, -Dan
This is awesome!
Sure, I think it'd make sense to do these together. I'm not planning on making any PR's for this in the foreseeable future.