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

IsConvex() public method

public IsConvex ( BulletShape shape ) : bool
shape BulletShape
return bool
        public override bool IsConvex(BulletShape shape)
        {
            BulletShapeUnman shapeu = shape as BulletShapeUnman;
            return BSAPICPP.IsConvex2(shapeu.ptr);
        }
BSAPIUnman