#ifndef Magnum_Primitives_Capsule_h #define Magnum_Primitives_Capsule_h /* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Vladimír Vondruš Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** @file * @brief Function @ref Magnum::Primitives::capsule2DWireframe(), @ref Magnum::Primitives::capsule3DSolid(), @ref Magnum::Primitives::capsule3DWireframe() */ #include #include #include "Magnum/Primitives/visibility.h" #include "Magnum/Trade/Trade.h" namespace Magnum { namespace Primitives { /** @brief Wireframe 2D capsule @param hemisphereRings Number of (line) rings for each hemisphere. Must be larger or equal to @cpp 1 @ce. @param cylinderRings Number of (line) rings for cylinder. Must be larger or equal to @cpp 1 @ce. @param halfLength Half the length of cylinder part Cylinder of radius @cpp 1.0f @ce along the Y axis, centered at origin, with hemispheres instead of caps. @ref MeshPrimitive::Lines with @ref MeshIndexType::UnsignedInt indices and @ref VertexFormat::Vector2 positions. @image html primitives-capsule2dwireframe.png width=256px @see @ref capsule3DSolid(), @ref capsule3DWireframe(), @ref circle2DWireframe(), @ref squareWireframe() */ MAGNUM_PRIMITIVES_EXPORT Trade::MeshData capsule2DWireframe(UnsignedInt hemisphereRings, UnsignedInt cylinderRings, Float halfLength); /** @brief Capsule flag @m_since{2020,06} @see @ref CapsuleFlags, @ref capsule3DSolid() */ enum class CapsuleFlag: UnsignedByte { TextureCoordinates = 1 << 0, /**< Generate texture coordinates */ /** * Generate four-component tangents. The last component can be used to * reconstruct a bitangent as described in the documentation of * @ref Trade::MeshAttribute::Tangent. * @m_since{2020,06} */ Tangents = 1 << 1 }; /** @brief Capsule flags @m_since{2020,06} @see @ref capsule3DSolid() */ typedef Containers::EnumSet CapsuleFlags; CORRADE_ENUMSET_OPERATORS(CapsuleFlags) /** @brief Solid 3D capsule @param hemisphereRings Number of (face) rings for each hemisphere. Must be larger or equal to @cpp 1 @ce. @param cylinderRings Number of (face) rings for cylinder. Must be larger or equal to @cpp 1 @ce. @param segments Number of (face) segments. Must be larger or equal to @cpp 3 @ce. @param halfLength Half the length of cylinder part @param flags Flags @m_since{2020,06} Cylinder of radius @cpp 1.0f @ce along the Y axis, centered at origin, with hemispheres instead of caps. @ref MeshPrimitive::Triangles with @ref MeshIndexType::UnsignedInt indices, interleaved @ref VertexFormat::Vector3 positions, @ref VertexFormat::Vector3 normals, optional @ref VertexFormat::Vector4 tangents and optional @ref VertexFormat::Vector2 texture coordinates. If texture coordinates are generated, vertices of one segment are duplicated for texture wrapping. @image html primitives-capsule3dsolid.png width=256px The capsule is by default created with radius set to @f$ 1.0 @f$. In order to get radius @f$ r @f$, length @f$ l @f$ and preserve correct normals, set @p halfLength to @f$ 0.5 \frac{l}{r} @f$ and then scale all positions by @f$ r @f$, for example using @ref MeshTools::transformPointsInPlace(). @see @ref capsule3DWireframe(), @ref capsule2DWireframe(), @ref cylinderSolid() */ MAGNUM_PRIMITIVES_EXPORT Trade::MeshData capsule3DSolid(UnsignedInt hemisphereRings, UnsignedInt cylinderRings, UnsignedInt segments, Float halfLength, CapsuleFlags flags = {}); #ifdef MAGNUM_BUILD_DEPRECATED /** @brief Whether to generate capsule texture coordinates @m_deprecated_since{2020,06} Use @ref CapsuleFlags instead. */ enum class CORRADE_DEPRECATED_ENUM("use CapsuleFlags instead") CapsuleTextureCoords: UnsignedByte { DontGenerate, /**< Don't generate texture coordinates */ Generate /**< Generate texture coordinates */ }; /** @brief @copybrief capsule3DSolid(UnsignedInt, UnsignedInt, UnsignedInt, Float, CapsuleFlags) @m_deprecated_since{2020,06} Use @ref capsule3DSolid(UnsignedInt, UnsignedInt, UnsignedInt, Float, CapsuleFlags) instead. */ CORRADE_IGNORE_DEPRECATED_PUSH MAGNUM_PRIMITIVES_EXPORT CORRADE_DEPRECATED("use capsule3DSolid() with CapsuleFlags instead") Trade::MeshData capsule3DSolid(UnsignedInt hemisphereRings, UnsignedInt cylinderRings, UnsignedInt segments, Float halfLength, CapsuleTextureCoords textureCoords); CORRADE_IGNORE_DEPRECATED_POP #endif /** @brief Wireframe 3D capsule @param hemisphereRings Number of (line) rings for each hemisphere. Must be larger or equal to @cpp 1 @ce. @param cylinderRings Number of (line) rings for cylinder. Must be larger or equal to @cpp 1 @ce. @param segments Number of line segments. Must be larger or equal to @cpp 4 @ce and multiple of @cpp 4 @ce. @param halfLength Half the length of cylinder part Cylinder of radius @cpp 1.0f @ce along the Y axis, centered at origin, with hemispheres instead of caps. @ref MeshPrimitive::Lines with @ref MeshIndexType::UnsignedInt indices and @ref VertexFormat::Vector3 positions. @image html primitives-capsule3dwireframe.png width=256px @see @ref capsule2DWireframe(), @ref capsule3DSolid(), @ref cylinderSolid() */ MAGNUM_PRIMITIVES_EXPORT Trade::MeshData capsule3DWireframe(UnsignedInt hemisphereRings, UnsignedInt cylinderRings, UnsignedInt segments, Float halfLength); }} #endif