.. _program_listing_file__tmp_ws_src_hpp-fcl_include_hpp_fcl_shape_geometric_shapes_utility.h: Program Listing for File geometric_shapes_utility.h =================================================== |exhale_lsh| :ref:`Return to documentation for file ` (``/tmp/ws/src/hpp-fcl/include/hpp/fcl/shape/geometric_shapes_utility.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* * Software License Agreement (BSD License) * * Copyright (c) 2011-2014, Willow Garage, Inc. * Copyright (c) 2014-2015, Open Source Robotics Foundation * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. * * Neither the name of Open Source Robotics Foundation nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifndef HPP_FCL_GEOMETRIC_SHAPES_UTILITY_H #define HPP_FCL_GEOMETRIC_SHAPES_UTILITY_H #include #include #include #include namespace hpp { namespace fcl { namespace details { HPP_FCL_DLLAPI std::vector getBoundVertices(const Box& box, const Transform3f& tf); HPP_FCL_DLLAPI std::vector getBoundVertices(const Sphere& sphere, const Transform3f& tf); HPP_FCL_DLLAPI std::vector getBoundVertices(const Ellipsoid& ellipsoid, const Transform3f& tf); HPP_FCL_DLLAPI std::vector getBoundVertices(const Capsule& capsule, const Transform3f& tf); HPP_FCL_DLLAPI std::vector getBoundVertices(const Cone& cone, const Transform3f& tf); HPP_FCL_DLLAPI std::vector getBoundVertices(const Cylinder& cylinder, const Transform3f& tf); HPP_FCL_DLLAPI std::vector getBoundVertices(const ConvexBase& convex, const Transform3f& tf); HPP_FCL_DLLAPI std::vector getBoundVertices(const TriangleP& triangle, const Transform3f& tf); } // namespace details template inline void computeBV(const S& s, const Transform3f& tf, BV& bv) { std::vector convex_bound_vertices = details::getBoundVertices(s, tf); fit(&convex_bound_vertices[0], (unsigned int)convex_bound_vertices.size(), bv); } template <> HPP_FCL_DLLAPI void computeBV(const Box& s, const Transform3f& tf, AABB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Sphere& s, const Transform3f& tf, AABB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Ellipsoid& e, const Transform3f& tf, AABB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Capsule& s, const Transform3f& tf, AABB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Cone& s, const Transform3f& tf, AABB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Cylinder& s, const Transform3f& tf, AABB& bv); template <> HPP_FCL_DLLAPI void computeBV(const ConvexBase& s, const Transform3f& tf, AABB& bv); template <> HPP_FCL_DLLAPI void computeBV(const TriangleP& s, const Transform3f& tf, AABB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Halfspace& s, const Transform3f& tf, AABB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Plane& s, const Transform3f& tf, AABB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Box& s, const Transform3f& tf, OBB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Sphere& s, const Transform3f& tf, OBB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Capsule& s, const Transform3f& tf, OBB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Cone& s, const Transform3f& tf, OBB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Cylinder& s, const Transform3f& tf, OBB& bv); template <> HPP_FCL_DLLAPI void computeBV(const ConvexBase& s, const Transform3f& tf, OBB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Halfspace& s, const Transform3f& tf, OBB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Halfspace& s, const Transform3f& tf, RSS& bv); template <> HPP_FCL_DLLAPI void computeBV(const Halfspace& s, const Transform3f& tf, OBBRSS& bv); template <> HPP_FCL_DLLAPI void computeBV(const Halfspace& s, const Transform3f& tf, kIOS& bv); template <> HPP_FCL_DLLAPI void computeBV, Halfspace>(const Halfspace& s, const Transform3f& tf, KDOP<16>& bv); template <> HPP_FCL_DLLAPI void computeBV, Halfspace>(const Halfspace& s, const Transform3f& tf, KDOP<18>& bv); template <> HPP_FCL_DLLAPI void computeBV, Halfspace>(const Halfspace& s, const Transform3f& tf, KDOP<24>& bv); template <> HPP_FCL_DLLAPI void computeBV(const Plane& s, const Transform3f& tf, OBB& bv); template <> HPP_FCL_DLLAPI void computeBV(const Plane& s, const Transform3f& tf, RSS& bv); template <> HPP_FCL_DLLAPI void computeBV(const Plane& s, const Transform3f& tf, OBBRSS& bv); template <> HPP_FCL_DLLAPI void computeBV(const Plane& s, const Transform3f& tf, kIOS& bv); template <> HPP_FCL_DLLAPI void computeBV, Plane>(const Plane& s, const Transform3f& tf, KDOP<16>& bv); template <> HPP_FCL_DLLAPI void computeBV, Plane>(const Plane& s, const Transform3f& tf, KDOP<18>& bv); template <> HPP_FCL_DLLAPI void computeBV, Plane>(const Plane& s, const Transform3f& tf, KDOP<24>& bv); HPP_FCL_DLLAPI void constructBox(const AABB& bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const OBB& bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const OBBRSS& bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const kIOS& bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const RSS& bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const KDOP<16>& bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const KDOP<18>& bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const KDOP<24>& bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const AABB& bv, const Transform3f& tf_bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const OBB& bv, const Transform3f& tf_bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const OBBRSS& bv, const Transform3f& tf_bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const kIOS& bv, const Transform3f& tf_bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const RSS& bv, const Transform3f& tf_bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const KDOP<16>& bv, const Transform3f& tf_bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const KDOP<18>& bv, const Transform3f& tf_bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI void constructBox(const KDOP<24>& bv, const Transform3f& tf_bv, Box& box, Transform3f& tf); HPP_FCL_DLLAPI Halfspace transform(const Halfspace& a, const Transform3f& tf); HPP_FCL_DLLAPI Plane transform(const Plane& a, const Transform3f& tf); } // namespace fcl } // namespace hpp #endif