Method: Ray::Polygon#outlined=

Defined in:
ext/polygon.c

#outlined=(val) ⇒ Object

Enables or disable outline.

Parameters:

  • val (true, false)

    True to enable outline.



257
258
259
260
261
# File 'ext/polygon.c', line 257

static
VALUE ray_polygon_set_outlined(VALUE self, VALUE val) {
  say_polygon_set_outlined(ray_rb2polygon(self), RTEST(val));
  return val;
}