Fritz Lekschas

Results 171 comments of Fritz Lekschas

Oh and yeah, the performance mode renders points as squares, which you might be able to use for rendering heatmaps (I haven't tried that yet but it sounds like a...

Interesting! So screen units refer to constant CSS pixel point sizes and data units refer to data-driven point sizes. The asinh transformation only transforms the camera scale, so regl-scatterplot effectively...

Apologies! I totally missed this ticket. This is a bug. Fortunately it's easy to work around it. Simply set `lassoInitiator: true` insight the `createScatterplot` as follows: ```js this.scatterplot = createScatterplot({...

How exactly do you know that the functionality is not working? I just tried it today and it works as expected for me. A short screen recording would help a...

Actually I can't reproduce the issue. One idea I have why it might not work for you is that the lasso initiator is added to the wrong parent element. What...

Also as an aside, you can also lasso elements via long press if you create the scatter plot instance as follows: ```js this.scatterplot = createScatterplot({ canvas, width, height, lassoOnLongPress: true,...

> what is the configuration to show a reticle in the canvas? ```js this.scatterplot = createScatterplot({ canvas, width, height, lassoOnLongPress: true, showReticle: true, }); ```

I'm closing this issue as the problem appears to be addressed.

Oh nooo! That's an odd one. I'll take a look what might causes this error to be thrown. You mentioned "in the latest version". Does that mean this used to...

Yeah, I suspect it has to do with repeated uploads of a new texture to the GPU, which happens in both scenarios that you describe.