withHue method

PdfColorHsv withHue(
  1. double hue
)

Create a copy of this HSV color with a different hue value

Implementation

PdfColorHsv withHue(double hue) {
  return PdfColorHsv(hue, saturation, value, alpha);
}