VectorTypes.hpp 519 B

12345678910111213141516171819202122
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-08-05
  6. * Changed: 2023-06-02
  7. *
  8. * */
  9. #ifndef LS_MATH_VECTOR_TYPES_HPP
  10. #define LS_MATH_VECTOR_TYPES_HPP
  11. #include <array>
  12. namespace ls::math::core::type
  13. {
  14. using vector2_component = double;
  15. using vector2_components = std::array<ls::math::core::type::vector2_component, 2>;
  16. using vector_scalar = ls::math::core::type::vector2_component;
  17. }
  18. #endif