thickLineRgba method

bool thickLineRgba(
  1. Point<double> p1,
  2. Point<double> p2,
  3. double width,
  4. int r,
  5. int g,
  6. int b,
  7. int a, {
  8. int blendMode = SDL_BLENDMODE_BLEND,
})

Implementation

bool thickLineRgba(
  math.Point<double> p1,
  math.Point<double> p2,
  double width,
  int r,
  int g,
  int b,
  int a, {
  int blendMode = SDL_BLENDMODE_BLEND,
}) => gfx.thickLineRgba(
  this,
  p1.x,
  p1.y,
  p2.x,
  p2.y,
  width,
  r,
  g,
  b,
  a,
  blendMode: blendMode,
);