drawRawPoints method

  1. @override
void drawRawPoints(
  1. PointMode pointMode,
  2. Float32List points,
  3. Paint paint
)
override

Draws a sequence of points according to the given PointMode.

The points argument is interpreted as a list of pairs of floating point numbers, where each pair represents an x and y offset from the origin.

The paint is used for each point (PointMode.points) or line (PointMode.lines or PointMode.polygon), ignoring Paint.style.

See also:

Implementation

@override
void drawRawPoints(
  ui.PointMode pointMode,
  Float32List points,
  ui.Paint paint,
) => parent.drawRawPoints(pointMode, points, paint);