May 2018
Intermediate to advanced
268 pages
6h 43m
English
Basic paint is just a color. The Color class is derived from Paint and provides the following options:
Here is a small example of semi-transparent color circles to show how colors can blend. I understand it's slightly harder to grasp in the black-and-white picture, so try it on your computer:
// chapter2/paint/ColorsDemo.javaPane root = new Pane();root.getChildren().addAll( // RED, opacity 0.3 new Circle(150,80,70, Color.rgb(255, 0, 0, 0.3)), // GREEN, opacity 0.3 new ...
Read now
Unlock full access