Uses of Class
org.extex.color.model.HsvColor

Packages that use HsvColor
org.extex.backend.documentWriter.itextpdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.pdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.color This package contains some classes for color support. 
org.extex.color.model This package contains implementing classes for different color models. 
 

Uses of HsvColor in org.extex.backend.documentWriter.itextpdf
 

Methods in org.extex.backend.documentWriter.itextpdf with parameters of type HsvColor
 java.lang.Object PdfColorVisitor.visitHsv(HsvColor color, java.lang.Object value)
          This method is called when an HsvColor has been encountered.
 

Uses of HsvColor in org.extex.backend.documentWriter.pdf
 

Methods in org.extex.backend.documentWriter.pdf with parameters of type HsvColor
 java.lang.Object PdfColorVisitor.visitHsv(HsvColor color, java.lang.Object value)
          This method is called when an HsvColor has been encountered.
 

Uses of HsvColor in org.extex.color
 

Methods in org.extex.color that return HsvColor
 HsvColor BasicColorConverter.toHsv(Color color)
          Convert an arbitrary color to the HSV model.
 HsvColor ColorConverter.toHsv(Color color)
          Convert an arbitrary color to the HSV model.
 HsvColor NoColorConverter.toHsv(Color color)
          Convert an arbitrary color to the HSV model.
 

Methods in org.extex.color with parameters of type HsvColor
 java.lang.Object ColorVisitor.visitHsv(HsvColor color, java.lang.Object value)
          This method is called when an HsvColor has been encountered.
 

Uses of HsvColor in org.extex.color.model
 

Methods in org.extex.color.model that return HsvColor
static HsvColor ColorFactory.getHsv(int hue, int saturation, int value, int alpha)
          Get a new color in the HSV color model.