SimpleBMPImage.this - multiple declarations

Function SimpleBMPImage.this

Create a RGB image (3 byte per pixel, no alpha)

this (
  int w,
  int h
);

Parameters

NameDescription
w number of pixels width
h number of pixel height

Function SimpleBMPImage.this

Create a RGB image (3 byte per pixel, no alpha)

this (
  int w,
  int h,
  const(bool[]) pxdata
);

Parameters

NameDescription
w number of pixels width
h number of pixel height
pxdata xy map of bool

Function SimpleBMPImage.this

Import a iteration map using uint[]. Scale colores over range 0..max

this (
  int w,
  int h,
  const(uint[]) iterMap
);

Parameters

NameDescription
w number of pixels width
h number of pixel height
iterMap map with iterations.

Function SimpleBMPImage.this

Import a iteration map using float[]. Scales 2 color rangeses over range -max..0..max

this (
  int w,
  int h,
  const(float[]) signedMap
);

Parameters

NameDescription
w number of pixels width
h number of pixel height
signedMap map with iterations.