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

IsConcave() public method

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