(Box box, Color color)
| 414 | } |
| 415 | |
| 416 | protected void applyColor(Box box, Color color) { |
| 417 | PhongMaterial material = new PhongMaterial(); |
| 418 | material.setDiffuseColor(color); |
| 419 | material.setSpecularColor(color.brighter()); |
| 420 | box.setMaterial(material); |
| 421 | } |
| 422 | |
| 423 | public Color getColor() { |
| 424 | return this.color; |
no outgoing calls
no test coverage detected