BEPUphysics.CollisionShapes.ConvexShapes.ConvexShape.ComputeVolumeDistribution C# (CSharp) Method

ComputeVolumeDistribution() public method

Computes the volume distribution of the shape. The volume distribution can be used to compute inertia tensors when paired with mass and other tuning factors.
public ComputeVolumeDistribution ( ) : Matrix3x3
return BEPUutilities.Matrix3x3
        public override Matrix3x3 ComputeVolumeDistribution()
        {
            float volume;
            return ComputeVolumeDistribution(out volume);
        }

Same methods

ConvexShape::ComputeVolumeDistribution ( float &volume ) : Matrix3x3