invoke

operator fun invoke(width: Double, height: Double, algo: BinPacker.Algo = MaxRects(width, height)): BinPacker
operator fun invoke(width: Int, height: Int, algo: BinPacker.Algo = MaxRects(width.toDouble(), height.toDouble())): BinPacker
operator fun invoke(width: Float, height: Float, algo: BinPacker.Algo = MaxRects(width.toDouble(), height.toDouble())): BinPacker