MCPcopy Index your code
hub / github.com/processing/processing / strokeWeight

Method strokeWeight

core/src/processing/core/PShape.java:799–806  ·  view source on GitHub ↗
(float weight)

Source from the content-addressed store, hash-verified

797
798
799 public void strokeWeight(float weight) {
800 if (!openShape) {
801 PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "strokeWeight()");
802 return;
803 }
804
805 strokeWeight = weight;
806 }
807
808 public void strokeJoin(int join) {
809 if (!openShape) {

Callers 2

stylesMethod · 0.45
drawMethod · 0.45

Calls 1

showWarningMethod · 0.95

Tested by

no test coverage detected