drawText method

  1. @override
void drawText(
  1. String text,
  2. num x,
  3. num y,
  4. PFont font,
  5. PStyle style,
)
override

Draw a text at position (x,y).

Implementation

@override
void drawText(String text, num x, num y, PFont font, PStyle style) {
  x = transform.x(x);
  y = transform.y(y);

  x = canvasX(x);
  y = canvasY(y);

  _setFont(font);
  _setFillStyle(style);

  _ctx.textBaseline = 'top';
  _ctx.fillText(text, x, y);
}