Open source C++ library for vector mathematics

后端 未结 8 2308
迷失自我
迷失自我 2020-12-15 07:28

I would need some basic vector mathematics constructs in an application. Dot product, cross product. Finding the intersection of lines, that kind of stuff.

I can do

8条回答
  •  失恋的感觉
    2020-12-15 07:49

    For linear algebra: try JAMA/TNT . That would cover dot products. (+matrix factoring and other stuff) As far as vector cross products (really valid only for 3D, otherwise I think you get into tensors), I'm not sure.

提交回复
热议问题