Are there any examples of matrix transformations on polygons (cartesian), using Boost Geometry? I am defining the matrix with simple std::vectors.
Also, I could only find 1 example of matrix_transformers
using ublas
but it's way too convoluted for a simple matrix transformation. If this is the only way though, I'll stick with it, but it would be great to have other options, ad do this with std::vector
instead of ublas::matrix
.
Here's my solution for anyone who might be interested. Boost geometry actually added a strategy called matrix_transformer that relies on Boost's
qvm::mat
for matrix transformations. There's not that many examples out there, so here's my code:And here's my result, where the green polygon is the original and the blue polygon is transformed (remember that the rotation was about the origin):