Universe.Physics.BulletSPlugin.BSAPIXNA.IsConvex C# (CSharp) Method

IsConvex() public method

public IsConvex ( BulletShape pShape ) : bool
pShape BulletShape
return bool
        public override bool IsConvex(BulletShape pShape)
        {
            CollisionShape shape = (pShape as BulletShapeXNA).shape;
            return shape.IsConvex();
        }
BSAPIXNA