Rémi Delaporte-Mathurin
Rémi Delaporte-Mathurin
Hi all, has this issue been resolved by now ?
@pietrodigangi no it hasn't I'm afraid
Is there a way to at least obtain the nodes position after the chart creation? This way, a workaround could be: - let the nodes positions be the default ones...
Interesting, I shall try it out, thanks!
Funnily enough, the following seems to work: ```python import cadquery as cq def create_solid(workplane): solid0 = ( cq.Workplane(workplane) .moveTo(0, 0) .circle(1) .extrude(1, both=False) ) solid1 = solid0.rotate((0, 0, -1), (0,...
True! A simple post-processing of the texts checking if the bounding box of the annotation is greater than the width of the rectangle does the trick. I'll try to find...
Hi, You have two options: 1) Set the current active axis: ```python import matplotlib.pyplot as plt import matplotx import numpy as np # create data rng = np.random.default_rng(0) offsets =...
FWIW it seems that practically everything CircleCI does can be done in GH actions as @Shimwell said. The major difference I find is that CircleCI has a dashboard dedicated to...
I'm able to reproduce the issue with: ```python import openmc mat = openmc.Material() mat.add_nuclide('Zr90', 1.0) mat.set_density('g/cm3', 1.0) model = openmc.Model() sph = openmc.Sphere(r=25.0, boundary_type='vacuum') cell = openmc.Cell(fill=mat, region=-sph) model.geometry =...
Could the spawn probability be inhomogeneous and a function of x, y, z?