You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Certain blend ops (e.g. "atop") can only be applied to pairs of grobs using grid::groupGrob(src, op, dst) instead of grid::groupGrob(src, op) where src is (say) a grobTree or some other collection of grobs.
Need to fix blend() so that it is compatible with these binary-only ops to allow using ops like "atop". One option is to maintain a table of ops known to be compatible with > 2 grob blending and fall back to a Reduce() for the other ops (since that should definitely work but will be slower).
The text was updated successfully, but these errors were encountered:
Certain blend ops (e.g.
"atop"
) can only be applied to pairs of grobs usinggrid::groupGrob(src, op, dst)
instead ofgrid::groupGrob(src, op)
wheresrc
is (say) agrobTree
or some other collection of grobs.Need to fix
blend()
so that it is compatible with these binary-only ops to allow using ops like"atop"
. One option is to maintain a table of ops known to be compatible with > 2 grob blending and fall back to aReduce()
for the other ops (since that should definitely work but will be slower).The text was updated successfully, but these errors were encountered: