BEPUphysics.CollisionShapes.ConvexShapes.BoxShape.ComputeVolume C# (CSharp) 메소드

ComputeVolume() 공개 메소드

Computes the volume of the shape.
public ComputeVolume ( ) : float
리턴 float
        public override float ComputeVolume()
        {
            return 8 * halfWidth * halfLength * halfHeight;
        }