BEPUphysics.CollisionShapes.MobileMeshShape.ComputeDistributionInformation C# (CSharp) Method

ComputeDistributionInformation() public method

Computes the volume, center of mass, and volume distribution of the shape.
public ComputeDistributionInformation ( ShapeDistributionInformation &shapeInfo ) : void
shapeInfo ShapeDistributionInformation Data about the shape.
return void
        public override void ComputeDistributionInformation(out ShapeDistributionInformation shapeInfo)
        {
            ComputeShapeInformation(this.TriangleMesh.Data as TransformableMeshData, out shapeInfo);
        }