|
@@ -31,7 +31,11 @@ class SoftBodyCreationSettings;
|
|
|
/// The functions that get/set the position of the body all indicate if they are relative to the center of mass or to the original position in which the shape was created.
|
|
|
///
|
|
|
/// The linear velocity is also velocity of the center of mass, to correct for this: \f$VelocityCOM = Velocity - AngularVelocity \times ShapeCOM\f$.
|
|
|
-class JPH_EXPORT_GCC_BUG_WORKAROUND alignas(JPH_RVECTOR_ALIGNMENT) Body : public NonCopyable
|
|
|
+class
|
|
|
+#ifndef JPH_PLATFORM_DOXYGEN // Doxygen gets confused here
|
|
|
+ JPH_EXPORT_GCC_BUG_WORKAROUND alignas(JPH_RVECTOR_ALIGNMENT)
|
|
|
+#endif
|
|
|
+ Body : public NonCopyable
|
|
|
{
|
|
|
public:
|
|
|
JPH_OVERRIDE_NEW_DELETE
|