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

IsConvex2d() public method

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