Paul Maria Scheikl

Results 37 comments of Paul Maria Scheikl

> Hi @ScheiklP > > Thanks for the PR. > > The SphereCollisionModel works historically without a topology (relying on the mstate). The tests are failing due to the absence...

Hi @alxbilger , nope it is still WIP. This one https://github.com/sofa-framework/sofa/pull/3239 should be done first anyway :)

**Version A (Quad with TriangleCollision):** ```python hexa_node.addObject("HexahedronSetTopologyContainer", hexahedra=grid_hexahedra, position=grid_positions) hexa_node.addObject("HexahedronSetTopologyModifier") hexa_node.addObject("MechanicalObject", showObject=True, showObjectScale=2.0) hexa_node.addObject("UniformMass", totalMass=0.001) hexa_node.addObject("HexahedronFEMForceField", youngModulus=100, poissonRatio=0.0) hexa_node.addObject("FixedConstraint", indices=[0, 60, 120, 180, 59, 119, 179, 239]) quad_node = hexa_node.addChild("quads")...

I was able to catch the segfault during debugging: ![image](https://user-images.githubusercontent.com/29635054/183629343-67ced5c4-abaf-402d-8134-122217b70d93.png)

> Here a minimal scene to launch it on debug mode would be helpful There is an example in the question (collapseable element "Click to expand!") :D

I was able to reproduce this issue, when compiling Sofa and SofaPython3 in Debug mode. When trying to add `libSofaPython3.so` through the PluginManager, it first warns the user, that the...

Now I also have this issue for Release build on v22.06.00 of SOFA and v22.06 of SofaPython3. @guparan Is there a CI check for loading a SofaPython3 scene after a...

Hi Junlin, oh, good to know! On CUT I observed fewer mode collapses with batch_size > 1, so I thought that might also benefit DCLGAN and SimDCL. :D The results...

And thank you for sharing the code! :)

Hi @fredroy Thanks for the tip! Sadly it even leaks, when there are absolutely no components but the root node. ```python import Sofa from tqdm import tqdm import Sofa.Core import...