mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.3 KiB
74 lines
2.3 KiB
#ifndef Magnum_Physics_Point_h |
|
#define Magnum_Physics_Point_h |
|
/* |
|
Copyright © 2010, 2011, 2012 Vladimír Vondruš <mosra@centrum.cz> |
|
|
|
This file is part of Magnum. |
|
|
|
Magnum is free software: you can redistribute it and/or modify |
|
it under the terms of the GNU Lesser General Public License version 3 |
|
only, as published by the Free Software Foundation. |
|
|
|
Magnum is distributed in the hope that it will be useful, |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
GNU Lesser General Public License version 3 for more details. |
|
*/ |
|
|
|
/** @file |
|
* @brief Class Magnum::Physics::Point, typedef Magnum::Physics::Point2D, Magnum::Physics::Point3D |
|
*/ |
|
|
|
#include "Math/Vector3.h" |
|
#include "AbstractShape.h" |
|
|
|
namespace Magnum { namespace Physics { |
|
|
|
/** |
|
@brief %Point |
|
|
|
@see Point2D, Point3D |
|
*/ |
|
template<std::uint8_t dimensions> class PHYSICS_EXPORT Point: public AbstractShape<dimensions> { |
|
public: |
|
/** @brief Constructor */ |
|
inline Point(const typename DimensionTraits<dimensions, GLfloat>::VectorType& position): _position(position), _transformedPosition(position) {} |
|
|
|
void applyTransformation(const typename DimensionTraits<dimensions, GLfloat>::MatrixType& transformation); |
|
|
|
/** @brief Position */ |
|
inline typename DimensionTraits<dimensions, GLfloat>::VectorType position() const { |
|
return _position; |
|
} |
|
|
|
/** @brief Set position */ |
|
inline void setPosition(const typename DimensionTraits<dimensions, GLfloat>::VectorType& position) { |
|
_position = position; |
|
} |
|
|
|
/** @brief Transformed position */ |
|
inline typename DimensionTraits<dimensions, GLfloat>::VectorType transformedPosition() const { |
|
return _transformedPosition; |
|
} |
|
|
|
protected: |
|
inline typename AbstractShape<dimensions>::Type type() const { return AbstractShape<dimensions>::Type::Point; } |
|
|
|
private: |
|
Math::Vector<dimensions, GLfloat> _position, _transformedPosition; |
|
}; |
|
|
|
#ifndef DOXYGEN_GENERATING_OUTPUT |
|
extern template class PHYSICS_EXPORT Point<2>; |
|
extern template class PHYSICS_EXPORT Point<3>; |
|
#endif |
|
|
|
/** @brief Two-dimensional point */ |
|
typedef Point<2> Point2D; |
|
|
|
/** @brief Three-dimensional point */ |
|
typedef Point<3> Point3D; |
|
|
|
}} |
|
|
|
#endif
|
|
|