38 #ifndef FCL_COSTSOURCE_H 39 #define FCL_COSTSOURCE_H 41 #include "fcl/common/types.h" 42 #include "fcl/math/bv/AABB.h" 62 CostSource(
const Vector3<S>& aabb_min_,
const Vector3<S>& aabb_max_, S cost_density_);
68 bool operator < (
const CostSource& other)
const;
76 #include "fcl/narrowphase/cost_source-inl.h" Main namespace.
Definition: broadphase_bruteforce-inl.h:45
Vector3< S > aabb_max
aabb upper bound
Definition: cost_source.h:55
Vector3< S > aabb_min
aabb lower bound
Definition: cost_source.h:52
S cost_density
cost density in the AABB<S> region
Definition: cost_source.h:58
Cost source describes an area with a cost. The area is described by an AABB<S> region.
Definition: cost_source.h:49