mirror of
https://github.com/mpusz/mp-units.git
synced 2025-08-05 05:04:27 +02:00
Small refactoring of LA example
This commit is contained in:
@@ -54,15 +54,14 @@ std::ostream& operator<<(std::ostream& os, const std::math::matrix<ET, OT>& v)
|
||||
}
|
||||
|
||||
|
||||
using namespace std::math;
|
||||
using namespace units::physical;
|
||||
using namespace units::physical::si::literals;
|
||||
|
||||
template<typename Rep = double>
|
||||
using vector = fs_vector<Rep, 3>;
|
||||
using vector = std::math::fs_vector<Rep, 3>;
|
||||
|
||||
template<typename Rep = double>
|
||||
using matrix = fs_matrix<Rep, 3, 3>;
|
||||
using matrix = std::math::fs_matrix<Rep, 3, 3>;
|
||||
|
||||
|
||||
void vector_of_quantity_add()
|
||||
|
Reference in New Issue
Block a user