Nicola Sorace
Nicola Sorace
I think I run into this issue every time I try to export an armature with actions. Not all the actions get exported, and sometimes animations are under the wrong...
I've added named patches, which should mean that writing functionality is complete for basic use cases. I'll start writing tests. Is the ability to _read_ OpenFOAM meshes required for merging?
@nschloe Yeah absolutely, I'm just new to writing tests so I need to do some reading.
ok, I've added simple tests but they fail because the reader doesn't always output the correct node ordering. If I make the check ignore node order the tests pass, so...
My bad! I was running `pytest` from inside the tests folder (couldn't use `tox` because it complains that numpy is missing for some reason?) so I wasn't getting that error....
hmm ok there's a complication: I don't think there's any way of ensuring the same node order in a write-read cycle because the 'rotation' of elements is lost in the...
Well I think the issue is that the quad [0, 1, 2, 3] is in a way the same as [3, 0, 1, 2]. OpenFOAM only deals with 3D elements,...
Tests work now. However I had to duplicate a lot of code from `helpers.write_read` to make a version that's less restrictive. Might be better to add the changes as an...
This is exactly the method I was trying to implement... except I hadn't realized the need to ensure the second face starts at the right index! I'll fix that. My...
Yeah I am just have less time now because I started a job. I'll get around to it.