Posts tagged c++

March 16, 2024
Arguments on why and when it is a bad idea to have references as class members, and when it can be fine.
c++ programming
November 12, 2023
Homogeneus transformations (rotation + translation), comparing Eigen (C++) and SciPy (Python); example with the roll-pitch-yaw (RPY) sequence of rotations.
math python c++ numpy
July 9, 2023
Useful examples with ranges and views, allowing for more functional style of C++ code.
c++ programming
August 22, 2022
Reading triangular mesh data from a binary STL file with C++; an example of using reinterpret_cast.
programming c++
January 29, 2022
Different ways of lookup and insert into C++’s map.
c++ programming
July 14, 2021
A C++ example of using a conditional variable and a mutex.
c++ programming concurrency
May 13, 2021
When braced initialization is preferred and when it is not (when it comes to std::vector).
c++ programming
April 24, 2021
Kind of like binary search, but for a std::vector of sorted floats, using std::lower_bound.
c++ programming
April 17, 2021
Some notes on using Visual Studio’s cl.exe to build C++ code from a terminal on Windows.
c++ windows cmake
May 5, 2020
Applying -fPIC flag when building with CMake.
c++ programming cmake pybind11 python
September 17, 2019
Some notes on C++ move semantics and an example of copy/move construction and assignment.
c++ programming
June 24, 2018
Integrating your C++ code with Python/NumPy code.
c++ pybind11 python