Alex Kaszynski
Alex Kaszynski
Vale should raise when given an invalid scope. For example: ``` IgnoredScopes = foo.bar ```` Should raise that `foo.bar` is not a valid scope and potentially list valid scopes, or...
Excellent work on implementing the numpydoc validation as a pre-commit hook. I've noticed that it is flagging getters and sellers. For example: ```py @property def x(self) -> np.ndarray: """Return or...
First off, great repository. Thanks for your work! Now to the issue: Within PyVista, we have a decorator: https://github.com/pyvista/pyvista/blob/451b61c09bbf56f9a55d8e1176986fae361dd7ea/pyvista/plotting/charts.py#L64 This allows us to substitute values in our documentation: https://github.com/pyvista/pyvista/blob/a26a52d037a265774be0ca06bb141e3346e73ad0/pyvista/plotting/charts.py#L1773-L1781 However,...
The old code in `insert_point_double` function uses a for loop that iterates through the elements from `k-1` to 1 and then compares the `cur_dist` with `closest_dist[i - 1]`. If the...
Is it possible to configure the `preset` option of [SMAA](https://docs.pmnd.rs/react-postprocessing/effects/smaa)? Using `SMAAPreset` seems to have no effect. ```js import { EffectComposer, SMAA } from '@react-three/postprocessing'; import { SMAAPreset } from...
Looks like google just started requiring an API key. A more informative error would be great when requesting from Google.
Still seeing rare but reoccuring segfaults when sending commands. I'm willing on betting that this has to do with `/OUT` that we're firing off regardless of if the command is...
Create a new attribute named `files` and allow the reporting of `mapdl` specific files. This should be done in the same approach as we use for the `parameters` and `post_processing`...
This issue tracks adding element results to the post module. - [x] ``U``: X, Y, or Z structural displacement. - [ ] ``ROT``: X, Y, or Z structural rotation. -...
Ran into an issue recently where tessellation to VTK wasn't working: ```py import cadquery as cq import OCP shape = cq.Workplane().box(1, 1, 1).faces(">Z").hole(0.7).edges().fillet(0.03).val() vs = OCP.IVtkOCC.IVtkOCC_Shape(shape.wrapped) sd = OCP.IVtkVTK.IVtkVTK_ShapeData() sm...