|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Uses of Color in nodebox.graphics |
|---|
| Fields in nodebox.graphics declared as Color | |
|---|---|
static Color |
Color.BLACK
|
protected Color |
AbstractGraphicsContext.fillColor
|
protected Color |
AbstractGraphicsContext.strokeColor
|
static Color |
Color.WHITE
|
| Methods in nodebox.graphics that return Color | |
|---|---|
Color |
CanvasContext.background()
Get the current background color. |
Color |
CanvasContext.background(Color c)
Set the current background color to the given color. |
Color |
CanvasContext.background(double x)
Set the current background color to given grayscale value. |
Color |
CanvasContext.background(double x,
double y)
Set the current background color to given grayscale and alpha value. |
Color |
CanvasContext.background(double x,
double y,
double z)
Set the current background color to the given R/G/B value. |
Color |
CanvasContext.background(double x,
double y,
double z,
double a)
Set the current background color to the given R/G/B/A value. |
Color |
Color.clone()
|
Color |
GraphicsContext.color()
Create an empty (black) color object. |
Color |
AbstractGraphicsContext.color()
Create an empty (black) color object. |
Color |
GraphicsContext.color(Color c)
Create a new color with the the given color. |
Color |
AbstractGraphicsContext.color(Color c)
Create a new color with the the given color. |
Color |
GraphicsContext.color(double x)
Create a new color with the given grayscale value. |
Color |
AbstractGraphicsContext.color(double x)
Create a new color with the given grayscale value. |
Color |
GraphicsContext.color(double x,
double y)
Create a new color with the given grayscale and alpha value. |
Color |
AbstractGraphicsContext.color(double x,
double y)
Create a new color with the given grayscale and alpha value. |
Color |
GraphicsContext.color(double x,
double y,
double z)
Create a new color with the the given R/G/B value. |
Color |
AbstractGraphicsContext.color(double x,
double y,
double z)
Create a new color with the the given R/G/B or H/S/B value. |
Color |
GraphicsContext.color(double x,
double y,
double z,
double a)
Create a new color with the the given R/G/B/A value. |
Color |
AbstractGraphicsContext.color(double x,
double y,
double z,
double a)
Create a new color with the the given R/G/B/A or H/S/B/A value. |
Color |
GraphicsContext.fill()
Get the current fill color. |
Color |
AbstractGraphicsContext.fill()
Get the current fill color. |
Color |
GraphicsContext.fill(Color c)
Set the current fill color to the given color. |
Color |
AbstractGraphicsContext.fill(Color c)
Set the current fill color to the given color. |
Color |
GraphicsContext.fill(double x)
Set the current fill color to given grayscale value. |
Color |
AbstractGraphicsContext.fill(double x)
Set the current fill color to given grayscale value. |
Color |
GraphicsContext.fill(double x,
double y)
Set the current fill color to given grayscale and alpha value. |
Color |
AbstractGraphicsContext.fill(double x,
double y)
Set the current fill color to given grayscale and alpha value. |
Color |
GraphicsContext.fill(double x,
double y,
double z)
Set the current fill color to the given R/G/B value. |
Color |
AbstractGraphicsContext.fill(double x,
double y,
double z)
Set the current fill color to the given R/G/B or H/S/B value. |
Color |
GraphicsContext.fill(double x,
double y,
double z,
double a)
Set the current fill color to the given R/G/B/A value. |
Color |
AbstractGraphicsContext.fill(double x,
double y,
double z,
double a)
Set the current fill color to the given R/G/B/A or H/S/B/A value. |
static Color |
Color.fromHSB(double hue,
double saturation,
double brightness)
|
static Color |
Color.fromHSB(double hue,
double saturation,
double brightness,
double alpha)
|
Color |
Canvas.getBackground()
|
Color |
Path.getFill()
|
Color |
Text.getFillColor()
|
Color |
Path.getFillColor()
|
Color |
Path.getStroke()
|
Color |
Path.getStrokeColor()
|
static Color |
Color.parseColor(String value)
Parse a hexadecimal value and return a Color object. |
Color |
Canvas.setBackground(Color background)
|
Color |
GraphicsContext.stroke()
Get the current stroke color. |
Color |
AbstractGraphicsContext.stroke()
Get the current stroke color. |
Color |
GraphicsContext.stroke(Color c)
Set the current stroke color to the given color. |
Color |
AbstractGraphicsContext.stroke(Color c)
Set the current stroke color to the given color. |
Color |
GraphicsContext.stroke(double x)
Set the current stroke color to given grayscale value. |
Color |
AbstractGraphicsContext.stroke(double x)
Set the current stroke color to given grayscale value. |
Color |
GraphicsContext.stroke(double x,
double y)
Set the current stroke color to given grayscale and alpha value. |
Color |
AbstractGraphicsContext.stroke(double x,
double y)
Set the current stroke color to given grayscale and alpha value. |
Color |
GraphicsContext.stroke(double x,
double y,
double z)
Set the current stroke color to the given R/G/B value. |
Color |
AbstractGraphicsContext.stroke(double x,
double y,
double z)
Set the current stroke color to the given R/G/B or H/S/B value. |
Color |
GraphicsContext.stroke(double x,
double y,
double z,
double a)
Set the current stroke color to the given R/G/B/A value. |
Color |
AbstractGraphicsContext.stroke(double x,
double y,
double z,
double a)
Set the current stroke color to the given R/G/B/A or H/S/B/A value. |
static Color |
Color.valueOf(String hex)
|
| Methods in nodebox.graphics with parameters of type Color | |
|---|---|
Color |
CanvasContext.background(Color c)
Set the current background color to the given color. |
Color |
GraphicsContext.color(Color c)
Create a new color with the the given color. |
Color |
AbstractGraphicsContext.color(Color c)
Create a new color with the the given color. |
Color |
GraphicsContext.fill(Color c)
Set the current fill color to the given color. |
Color |
AbstractGraphicsContext.fill(Color c)
Set the current fill color to the given color. |
Color |
Canvas.setBackground(Color background)
|
void |
Path.setFill(Color c)
|
void |
Geometry.setFill(Color c)
|
void |
Colorizable.setFill(Color c)
|
void |
Text.setFillColor(Color fillColor)
|
void |
Path.setFillColor(Color fillColor)
|
void |
Geometry.setFillColor(Color fillColor)
|
void |
Colorizable.setFillColor(Color fillColor)
|
void |
Path.setStroke(Color c)
|
void |
Geometry.setStroke(Color c)
|
void |
Colorizable.setStroke(Color c)
|
void |
Path.setStrokeColor(Color strokeColor)
|
void |
Geometry.setStrokeColor(Color strokeColor)
|
void |
Colorizable.setStrokeColor(Color strokeColor)
|
Color |
GraphicsContext.stroke(Color c)
Set the current stroke color to the given color. |
Color |
AbstractGraphicsContext.stroke(Color c)
Set the current stroke color to the given color. |
| Constructors in nodebox.graphics with parameters of type Color | |
|---|---|
Color(Color other)
Create a new color with the the given color. |
|
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||