stla

Results 73 issues of stla

Hello, I recently tried to use `selectPage`, e.g. `selectPage(proxy, 2)`, but this had no effect. I expected it would make the table jump to page 2. --- By filing an...

Hello, Running `test()` generates a stackoverflow error: ```julia import Meshes cylinder = Meshes.Cylinder((0,0,0), (1,1,1), 0.1) sphere = Meshes.discretize(Meshes.Sphere((2,2,2), 0.1)) function test() Meshes.merge(cylinder, sphere) end ``` ``` julia> test() ERROR: StackOverflowError:...

help wanted
feature

Hello, I exposed my problem [here](https://discourse.julialang.org/t/meshviz-makie-is-smoothing-my-colors/91993). In the given answer, the author uses the `Makie.mesh!` function to plot the mesh, with the option `interpolate=false`. Is it possible to have such...

help wanted
good first issue
viz

Clipping a mesh involves three ingredients: the mesh to be clipped, a function associating a scalar to each vertex of the mesh, called the *boundary function*, and a threshold value....

help wanted
feature

Hello, Maybe I don't use the appropriate code; the following code does not produce the expected result: ```r library(echarts4r) d e_charts(x) |> e_scatter(y, symbol_size = 10, legend = FALSE) |>...

Help

Hello, When creating a point series and setting the bullets options in such a way: ```js let myOptions = {fill: "blue"}; series.bullets.push(function () { return am5.Bullet.new(root, { sprite: am5.Circle.new( root,...

question

Hello, In the Python library **PyVista**, it is possible to save a mesh without rendering it. This gains some time if you want to do an animation with several meshes....

Hello, I had a big mesh. Maybe about 500000 vertices and 1e6 faces. It has multiple colors too. I ran `snapshot3d` with `webshot=TRUE` and this has frozen the laptop, completely...

Hello, The two functions mentionned in the title invisibly return their output. Is there a reason for that? I find this is a bit annoying.

```python from gmpy2 import mpz, next_prime, f_mod def squarefreenums(n, Nmax=None): """Returns the first square-free integers. A square-free integer is an integer which is divisible by no other perfect square than...