translated method

GlyphContour translated(
  1. double dx,
  2. double dy
)

Implementation

GlyphContour translated(double dx, double dy) => GlyphContour(
      points.map((p) => p.translated(dx, dy)).toList(growable: false),
    );