Nothing
#' Blending and compositing for ggplot2
#'
#' @name ggblend-package
#' @aliases ggblend
#'
#' @description
#'
#' \pkg{ggblend} is an R package that adds support for R 4.2 blend modes
#' (e.g. `"multiply"`, `"overlay"`, etc) to \pkg{ggplot2}.
#'
#' @details
#'
#' The primary support for blending is provided by the `blend()` function,
#' which can be used to augment [ggplot()] layers/geoms or lists of
#' layers/geoms in a [ggplot()] specification.
#'
#' For example, one can replace something like this:
#'
#' ```
#' df |>
#' ggplot(aes(x, y)) +
#' geom_X(...) +
#' geom_Y(...) +
#' geom_Z(...)
#' ```
#'
#' With something like this:
#'
#' ```
#' df |>
#' ggplot(aes(x, y)) +
#' geom_X(...) +
#' geom_Y(...) |> blend("multiply") +
#' geom_Z(...)
#' ```
#'
#' In order to apply a "multiply" blend to the layer with `geom_Y(...)`.
#'
#' @section Package options:
#'
#' The following global options can be set using [options()] to modify the
#' behavior of \pkg{ggblend}:
#'
#' - `"ggblend.check_blend"`: If `TRUE` (default), [blend()] will warn if
#' you attempt to use a blend mode not supported by the current graphics
#' device, as reported by `dev.capabilities()$compositing`. Since this check
#' can be unreliable on some devices (they will report not support a blend
#' mode that they do support), you can disable this warning by setting this
#' option to `FALSE`.
#'
#' - `"ggblend.check_affine_transform"`: If `TRUE` (default), [affine_transform()] will warn if
#' you attempt to use a blend mode not supported by the current graphics
#' device, as reported by `dev.capabilities()$transformation`. Since this check
#' can be unreliable on some devices (they will report not support a blend
#' mode that they do support), you can disable this warning by setting this
#' option to `FALSE`.
#'
#' @import grid
#' @import ggplot2
#' @import methods
"_PACKAGE"
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.