darikg

Results 31 comments of darikg

My understanding is that VTK's current boolean operations are considered pretty unreliable. Some alternatives I know of: 1. [vtkbool](https://github.com/zippy84/vtkbool) (never tried it myself) - See also [this comment](https://discourse.vtk.org/t/merging-vtkpolydata-and-vtkpolydata-issue-add-vtkpolydata-to-vtkpolydata-failed-vtkbooleanoperation-failed-resulting-in-non-manifold/8191/2) on the...

> I am working on packaging vtkbool for conda on the conda-forge channel. If you are interested in this, you can follow the progress here [zippy84/vtkbool#51](https://github.com/zippy84/vtkbool/issues/51) That's awesome! Will it...

> Yes, and it's a bit of work I'm sure! I'm happy to submit a PR here, just not sure how to use the vtkLabelPlacementMapper. Or do you think it'd...

Ah, looks like pythreejs hasn't implemented TextGeometry yet https://github.com/jupyter-widgets/pythreejs/issues/199

This is something that'd be really really nice to have as a standalone package -- mapping an arbitrary hierarchically nested dict-like structure to interactive html_repr would be broadly useful!

I was thinking it'd be kinda neat if skgeom obeyed numpy broadcasting semantics. So ```python n, m = 10, 20 p, q = ( np.array([Point3(*uniform(0, 1, 3)) for _ in...

`\set` is also used for variable interpolation, like this: ``` dg=# \set foo 3.14159/2 dg=# \echo :foo 3.14159/2 dg=# select sin(:foo); sin ------------------ 0.99999999999912 (1 row) ``` Or is that...

thank you for isolating this to vtk.js @xavArtley

Just a big picture comment here, but I wonder if it might be worth waiting for #5266 and do more integration of the validation package and an overall review of...

> And polars does not store data in its data frames contiguously by default, so calling np.asarray on a series which is part of polars data frame will raise an...