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

CreateConvexHullShape() public method

public CreateConvexHullShape ( BulletWorld world, int indicesCount, int indices, int verticesCount, float vertices ) : BulletShape
world BulletWorld
indicesCount int
indices int
verticesCount int
vertices float
return BulletShape
        public override BulletShape CreateConvexHullShape(BulletWorld world,
                int indicesCount, int[] indices,
                int verticesCount, float[] vertices)
        {
            BulletWorldUnman worldu = world as BulletWorldUnman;
            return new BulletShapeUnman(
                    BSAPICPP.CreateConvexHullShape2(worldu.ptr, indicesCount, indices, verticesCount, vertices),
                    BSPhysicsShapeType.SHAPE_CONVEXHULL);
        }
BSAPIUnman