withHue method

PdfColorHsv withHue(
  1. double hue
)

Returns a copy with a different hue value.

Implementation

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