mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
Do not put backticks after \relates doxygen command
to fix unwanted backticks appearing in generated HTML
This commit is contained in:
parent
07875320fe
commit
6f16e3d701
@ -277,7 +277,7 @@ private:
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \relates `sf::Transform`
|
||||
/// \relates sf::Transform
|
||||
/// \brief Overload of binary `operator*` to combine two transforms
|
||||
///
|
||||
/// This call is equivalent to calling `Transform(left).combine(right)`.
|
||||
@ -291,7 +291,7 @@ private:
|
||||
[[nodiscard]] constexpr Transform operator*(const Transform& left, const Transform& right);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \relates `sf::Transform`
|
||||
/// \relates sf::Transform
|
||||
/// \brief Overload of binary `operator*=` to combine two transforms
|
||||
///
|
||||
/// This call is equivalent to calling `left.combine(right)`.
|
||||
@ -305,7 +305,7 @@ private:
|
||||
constexpr Transform& operator*=(Transform& left, const Transform& right);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \relates `sf::Transform`
|
||||
/// \relates sf::Transform
|
||||
/// \brief Overload of binary `operator*` to transform a point
|
||||
///
|
||||
/// This call is equivalent to calling `left.transformPoint(right)`.
|
||||
@ -319,7 +319,7 @@ constexpr Transform& operator*=(Transform& left, const Transform& right);
|
||||
[[nodiscard]] constexpr Vector2f operator*(const Transform& left, Vector2f right);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \relates `sf::Transform`
|
||||
/// \relates sf::Transform
|
||||
/// \brief Overload of binary `operator==` to compare two transforms
|
||||
///
|
||||
/// Performs an element-wise comparison of the elements of the
|
||||
@ -334,7 +334,7 @@ constexpr Transform& operator*=(Transform& left, const Transform& right);
|
||||
[[nodiscard]] constexpr bool operator==(const Transform& left, const Transform& right);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \relates `sf::Transform`
|
||||
/// \relates sf::Transform
|
||||
/// \brief Overload of binary `operator!=` to compare two transforms
|
||||
///
|
||||
/// This call is equivalent to `!(left == right)`.
|
||||
|
@ -426,7 +426,7 @@ namespace Literals
|
||||
{
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \relates `sf::Angle`
|
||||
/// \relates sf::Angle
|
||||
/// \brief User defined literal for angles in degrees, e.g. `10.5_deg`
|
||||
///
|
||||
/// \param angle Angle in degrees
|
||||
@ -437,7 +437,7 @@ namespace Literals
|
||||
[[nodiscard]] constexpr Angle operator""_deg(long double angle);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \relates `sf::Angle`
|
||||
/// \relates sf::Angle
|
||||
/// \brief User defined literal for angles in degrees, e.g. `90_deg`
|
||||
///
|
||||
/// \param angle Angle in degrees
|
||||
@ -448,7 +448,7 @@ namespace Literals
|
||||
[[nodiscard]] constexpr Angle operator""_deg(unsigned long long int angle);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \relates `sf::Angle`
|
||||
/// \relates sf::Angle
|
||||
/// \brief User defined literal for angles in radians, e.g. `0.1_rad`
|
||||
///
|
||||
/// \param angle Angle in radians
|
||||
@ -459,7 +459,7 @@ namespace Literals
|
||||
[[nodiscard]] constexpr Angle operator""_rad(long double angle);
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \relates `sf::Angle`
|
||||
/// \relates sf::Angle
|
||||
/// \brief User defined literal for angles in radians, e.g. `2_rad`
|
||||
///
|
||||
/// \param angle Angle in radians
|
||||
|
Loading…
Reference in New Issue
Block a user