trase icon indicating copy to clipboard operation
trase copied to clipboard

Image geometry

Open martinjrobins opened this issue 6 years ago • 1 comments

  • name: Image
  • plot a 2D matrix of values to the screen as an image or a heatmap
  • derived from Drawable

related functions:

  • Axis::image(DataWithAesthetics data, Transform transform = Transform(Identity)): creates a Image on the current axis.

martinjrobins avatar Jun 02 '18 06:06 martinjrobins

since this is basically adding a raster image to the plot, might be doable in the svg backend using the <image> element, which allows you to embed the image in the svg:

https://stackoverflow.com/questions/6249664/does-svg-support-embedding-of-bitmap-images

Nanovg allows you to add images directly

martinjrobins avatar Jun 25 '18 08:06 martinjrobins