MCPcopy Index your code
hub / github.com/benfry/processing4 / setShininess

Method setShininess

core/src/processing/opengl/PShapeOpenGL.java:2617–2632  ·  view source on GitHub ↗
(float shininess)

Source from the content-addressed store, hash-verified

2615
2616
2617 @Override
2618 public void setShininess(float shininess) {
2619 if (openShape) {
2620 PGraphics.showWarning(INSIDE_BEGIN_END_ERROR, "setShininess()");
2621 return;
2622 }
2623
2624 if (family == GROUP) {
2625 for (int i = 0; i < childCount; i++) {
2626 PShapeOpenGL child = (PShapeOpenGL) children[i];
2627 child.setShininess(shininess);
2628 }
2629 } else {
2630 setShininessImpl(shininess);
2631 }
2632 }
2633
2634
2635 protected void setShininessImpl(float shininess) {

Callers 2

enableStyleMethod · 0.95
stylesMethod · 0.95

Calls 4

showWarningMethod · 0.95
setShininessImplMethod · 0.95
markForTessellationMethod · 0.95

Tested by

no test coverage detected