Method: Processing::Shape#setStroke
- Defined in:
- lib/processing/shape.rb
#setStroke(gray) ⇒ nil #setStroke(gray, alpha) ⇒ nil #setStroke(r, g, b) ⇒ nil #setStroke(r, g, b, alpha) ⇒ nil
Sets the stroke color.
386 387 388 389 |
# File 'lib/processing/shape.rb', line 386 def setStroke(*args) stroke(*args) nil end |