Skip to content

Support for transparent overlays #175

@mikekben

Description

@mikekben

Is it possible to add support for an overlay-like operation of "erasing" by overlaying a transparent image? For example, this would be useful for overlaying a doughnut shape over a colorful background while maintaining the background behind the center of the doughnut:

(overlay
 (circle 30 'solid 'green)
 (circle 50 'solid 'red)
 (above (rectangle 200 100 'solid 'green)
        (rectangle 200 100 'solid 'blue)))

but with a transparent rather than solid green background for the center of the doughnut shape, allowing the green-blue split to be visible. I can think of two ways to expand the API to support this functionality:

  • Add a new erase function
    (erase image scene) where scene is the background, and image is the area to be replaced by transparent pixels. The color of image could be ignored, or perhaps the function could require that the color of image is 'transparent
  • Add an 'overwrite mode for existing functions
    (circle 30 'overwrite 'transparent) This option may introduce lots of corner cases for existing functions, and the 'overwrite mode would be ignored in all cases except during an overlay.

Looking through the existing API, it seems that implementing this functionality could closely follow the existing overlay implementation, but I hope that others can suggest some additional feedback and propose better ways to proceed!

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions