#ifndef Magnum_Physics_Point_h #define Magnum_Physics_Point_h /* Copyright © 2010, 2011, 2012 Vladimír Vondruš 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" #include "corradeCompatibility.h" namespace Magnum { namespace Physics { /** @brief %Point @see Point2D, Point3D */ template class MAGNUM_PHYSICS_EXPORT Point: public AbstractShape { public: /** @brief Constructor */ inline Point(const typename DimensionTraits::VectorType& position): _position(position), _transformedPosition(position) {} inline typename AbstractShape::Type type() const override { return AbstractShape::Type::Point; } void applyTransformationMatrix(const typename DimensionTraits::MatrixType& matrix) override; /** @brief Position */ inline typename DimensionTraits::VectorType position() const { return _position; } /** @brief Set position */ inline void setPosition(const typename DimensionTraits::VectorType& position) { _position = position; } /** @brief Transformed position */ inline typename DimensionTraits::VectorType transformedPosition() const { return _transformedPosition; } private: typename DimensionTraits::VectorType _position, _transformedPosition; }; /** @brief Two-dimensional point */ typedef Point<2> Point2D; /** @brief Three-dimensional point */ typedef Point<3> Point3D; }} #endif