Uses of Class
facets.util.shade.Shade

Packages that use Shade
facets.core.app Extensions and partial specialisations of core Superficial types. 
facets.core.app.avatar Core types for custom viewers. 
facets.facet Surface building. 
facets.util.geom Plane geometry. 
facets.util.shade Abstract colours. 
 

Uses of Shade in facets.core.app
 

Methods in facets.core.app that return Shade
 Shade HtmlContent.HtmlSelected.shade()
           
 

Methods in facets.core.app with parameters of type Shade
 void HtmlContent.HtmlSelected.setShade(Shade shade)
           
 

Uses of Shade in facets.core.app.avatar
 

Fields in facets.core.app.avatar declared as Shade
 Shade PainterMaster.Outlined.fill
           
 Shade PainterMaster.Outlined.pen
           
 Shade PainterMaster.Textual.shade
           
 

Methods in facets.core.app.avatar that return Shade
 Shade PainterMaster.Outlined.getFill()
           
 Shade PainterMaster.Outlined.getPen()
           
 

Methods in facets.core.app.avatar with parameters of type Shade
 Painter PainterSource.backgroundLines(Line[] lines, Shade shade)
          Create non-pickable painter of the lines passed.
 Painter PainterSource.bar(double x, double y, double length, double width, Shade fill, boolean pickable)
           
 Painter PainterSource.line(Line line, Shade shade, int style, boolean pickable)
          Create a possibly-pickable line painter.
 Painter PainterSource.pointMark(Point at, Shade fill, boolean pickable)
          Create a (maybe pickable) painter to mark a position.
 Painter PainterSource.rectangle(double x, double y, double width, double height, Shade pen)
           
 Painter PainterSource.stretchMark(double height, double length, double width, Shade fill)
           
 Painter PainterSource.textLineAt(java.lang.String text, java.lang.String face, int points, Shade shade, double x, double y)
           
 Painter PainterSource.textOutline(java.lang.String text, java.lang.String face, int points, boolean bold, boolean italic, Shade fill, Shade pen)
           
 Painter PainterSource.turnMark(double size, double width, Shade fill)
           
 

Constructors in facets.core.app.avatar with parameters of type Shade
PainterMaster.Outlined(Shade fill, Shade pen, boolean pickable)
           
PainterMaster.Textual(java.lang.String text, java.lang.String face, int points, double x, double y, Shade shade)
           
 

Uses of Shade in facets.facet
 

Fields in facets.facet declared as Shade
static Shade AreaFacets.COLOR_DESKTOP
           
static Shade FacetFactory.panelShade
          Shade to be used for surface panels and menus.
 

Methods in facets.facet with parameters of type Shade
static FacetFactory FacetFactory.newAppletCore(FacetAppSpecifier spec, FacetFactory.SurfaceStyle style, Shade panelShade)
          Creates a basic FacetFactory for use in an applet.
 

Uses of Shade in facets.util.geom
 

Fields in facets.util.geom declared as Shade
 Shade Line.color
           
 

Constructors in facets.util.geom with parameters of type Shade
Line(Point from, Point to, Shade color)
           
 

Uses of Shade in facets.util.shade
 

Fields in facets.util.shade declared as Shade
static Shade Shades.black
          Core shade.
static Shade Shades.blue
          Core shade.
static Shade Shades.brown
          Core shade.
static Shade[] Shades.CORE_SHADES
          The set of core shades.
static Shade Shades.cyan
          Core shade.
static Shade Shades.gray
          Core shade.
static Shade Shades.green
          Core shade.
static Shade Shades.lightGray
          Core shade.
static Shade Shades.magenta
          Core shade.
static Shade Shades.orange
          Core shade.
static Shade Shades.red
          Core shade.
static Shade Shades.white
          Core shade.
static Shade Shades.yellow
          Core shade.
 

Methods in facets.util.shade that return Shade
 Shade ShadeSet.addShade(Shade shade)
          Adds shade to the working set, providing no equivalent shade is already stored.
 Shade Shade.brighter()
          Creates a brighter version of the shade.
 Shade Shade.darker()
          Creates a darker version of the shade.
 Shade Shade.resaturated(boolean saturated)
          Creates a new version of the shade with HSB saturation of either 1.0 or below THRESHOLD_S.
 Shade Shaded.shade()
          The current colour of the object as a Shade.
 Shade[] ShadeSet.shades()
          The sorted contents of the working set of Shades.
 Shade ShadeSet.snapShade(Shade shade)
          Checks whether shade can be 'snapped' to an existing shade.
 

Methods in facets.util.shade with parameters of type Shade
 Shade ShadeSet.addShade(Shade shade)
          Adds shade to the working set, providing no equivalent shade is already stored.
 boolean ShadeSet.isAddedShade(Shade shade)
          True if shade is not a member of the internal reference set.
 void Shaded.setShade(Shade shade)
          Set the current colour of the object as a Shade.
 Shade ShadeSet.snapShade(Shade shade)
          Checks whether shade can be 'snapped' to an existing shade.
 

Constructors in facets.util.shade with parameters of type Shade
ShadeSet(Shade[] shades, ShadeSet master)
          Core constructor, not public API.