lokitkhemka
lokitkhemka
When, I was running the following code: ``` function DrawCylinder(Center, Radius, Length, Angle, Direction) { let shape = Cylinder(Radius, Length, false); shape = Rotate(Direction, Angle,shape, false); shape = Translate(Center, shape,...
**Describe the bug** Exception thrown: read access violation. this was 0x238 Error is thrown when running certain test or tutorial projects (for example: TestPBR and Tutorial 1). However, TestPhysics runs...
Specifically, the below lines in particle_system_data2.h are causing the issue: `namespace flatbuffers { class FlatBufferBuilder; template struct Offset; }` `definition of type 'FlatBufferBuilder' conflicts with type alias of the same...
My BESO configuration file and the FreeCAD FEM input files are: [beso_conf - Copy.txt](https://github.com/calculix/beso/files/11868957/beso_conf.-.Copy.txt) [FEMMeshNetgen_inp.txt](https://github.com/calculix/beso/files/11868962/FEMMeshNetgen_inp.txt) The input geometry is as follows:  I am looking to see how the optimal...
Custom build for 'D:\engine-sim\build\CMakeFiles\9c201e4c60d094a9ac61769a76bd3e47\parser.auto.cpp.rule;D:\engine-sim\build\CMakeFiles\9c201e4c60d094a9ac61769a76bd3e47\scanner.auto.cpp.rule;D:\engine-sim\dependencies\submodules\piranha\CMakeLists.txt' exited with code 63. I keep getting the above error while trying to build piranha. I even tried to build it as a separate project, but...
I want to recreate Example 4 from the paper preprint. But, the required files are not present in the repo. Can you add that, if possible? It will be of...
Hi, I managed to get the code compile and run. However, I keep seeing the error: `could not open file: shader/render/pPoints.vert` during runtime, after the log `custom scene created`. Can...
Hi, I need the assets files to run the programs. Can you point me to where I can download them from? Thank you.
Is the code or paper for mechanical clock simulation featured on the frontpage of the website [projectchrono.org](projectchrono.org) publicly availabe? If so, can anyone point to it? I couldn't find it...
Hi, I was reading through the code of `reactphysics3d`, when I came across the following constructor: ``` Array(MemoryAllocator& allocator, uint64 capacity = 0) : mBuffer(nullptr), mSize(0), mCapacity(0), mAllocator(allocator) ``` Why...