public class FractionBasedHighlightPainter extends FractionBasedPainter implements SubstanceHighlightPainter
colorQueries, fractions| Constructor and Description |
|---|
FractionBasedHighlightPainter(java.lang.String displayName,
float[] fractions,
ColorSchemeSingleColorQuery[] colorQueries)
Creates a new fraction-based highlight painter.
|
| Modifier and Type | Method and Description |
|---|---|
void |
paintHighlight(java.awt.Graphics2D graphics,
java.awt.Component comp,
int width,
int height,
java.util.Set<SubstanceConstants.Side> openSides,
SubstanceColorScheme colorScheme1,
SubstanceColorScheme colorScheme2,
float cyclePos)
Paints the highlight.
|
getColorQueries, getDisplayName, getFractionsclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetDisplayNamepublic FractionBasedHighlightPainter(java.lang.String displayName,
float[] fractions,
ColorSchemeSingleColorQuery[] colorQueries)
displayName - The display name of this painter.fractions - The fractions of this painter. Must be strictly increasing,
starting from 0.0 and ending at 1.0.colorQueries - The color queries of this painter. Must have the same size as
the fractions array, and all entries must be non-
null.public void paintHighlight(java.awt.Graphics2D graphics,
java.awt.Component comp,
int width,
int height,
java.util.Set<SubstanceConstants.Side> openSides,
SubstanceColorScheme colorScheme1,
SubstanceColorScheme colorScheme2,
float cyclePos)
SubstanceHighlightPainterpaintHighlight in interface SubstanceHighlightPaintergraphics - Graphics context.comp - Component.width - Width.height - Height.openSides - The sides specified in this set will not be painted. Can be
null or empty.colorScheme1 - The first color scheme.colorScheme2 - The second color scheme.cyclePos - Cycle position. Is used for rollover and selection animations.
Must be in 0..1 range.