Unreal Engine is a very powerful game engine, with Unity being the other popular choice. I’ve worked with Unity a little bit and I like how tightly it integrates with C#, but I’ve decided to take […]
C/C++
4 Beiträge
There were times when programmers did not have to worry about parallelisation, as most computers only had a single CPU. Sure, you could get dual-CPU mainboards, but their use was mostly limited to servers. The need […]
I recently ran into issues when using really large arrays in C++ for a dataset of several hundred million points. I have access to a computer with 512 GB of RAM, but even there the program […]
Most of my code is in C#, but I occasionally encounter functionality that is only available in a C++ DLL. Luckily, it is possible to call C++ DLLs from C#, the main challenge being the difference […]