Compare coordinate systems via addresses instead of transformation matrices
Whenever a geometry-related calculation with two objects happens (like adding two vectors, vec1 + vec2
), a check is performed whether their components are in the same coordinate system. Currently, this check involves comparing the whole transformation matrices of the two reference CS. I replaced this with a comparison by their addresses, which is sufficient and faster.