Physical Quantities  v1.0.0
C++ library of physical quantities, physical models, and units of measure for scientific computing. https://github.com/acodcha/phq
Classes | Namespaces | Functions
PlanarForce.hpp File Reference
#include <array>
#include <cstddef>
#include <functional>
#include <ostream>
#include "Angle.hpp"
#include "DimensionalPlanarVector.hpp"
#include "PlanarDirection.hpp"
#include "PlanarVector.hpp"
#include "ScalarForce.hpp"
#include "Unit/Force.hpp"

Go to the source code of this file.

Classes

class  PhQ::PlanarForce< NumericType >
 Two-dimensional Euclidean force vector in the XY plane. Contains two components in Cartesian coordinates: x and y. For a three-dimensional Euclidean force vector, see PhQ::Force. For scalar force components or for the magnitude of a force vector, see PhQ::ScalarForce. More...
 

Namespaces

 PhQ
 Namespace that encompasses all of the Physical Quantities library's content.
 

Functions

template<typename NumericType >
constexpr bool PhQ::operator== (const PlanarForce< NumericType > &left, const PlanarForce< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator!= (const PlanarForce< NumericType > &left, const PlanarForce< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator< (const PlanarForce< NumericType > &left, const PlanarForce< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator> (const PlanarForce< NumericType > &left, const PlanarForce< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator<= (const PlanarForce< NumericType > &left, const PlanarForce< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator>= (const PlanarForce< NumericType > &left, const PlanarForce< NumericType > &right) noexcept
 
template<typename NumericType >
std::ostream & PhQ::operator<< (std::ostream &stream, const PlanarForce< NumericType > &planar_force)
 
template<typename NumericType >
constexpr PlanarForce< NumericType > PhQ::operator* (const NumericType number, const PlanarForce< NumericType > &planar_force)