class Cryplot::Fill

Included Modules

Defined in:

plot/elems/fill.cr

Instance Method Summary

Instance methods inherited from module Cryplot::FillMixin(Cryplot::Fill)

border_hide border_hide, border_line_color(color : String) border_line_color, border_line_width(value : Int32) border_line_width, border_show(show = true) border_show, fill_color(color : String) fill_color, fill_empty fill_empty, fill_intensity(value : Float64) fill_intensity, fill_pattern(num : Int32) fill_pattern, fill_repr fill_repr, fill_solid fill_solid, fill_transparent(active = true) fill_transparent

Instance methods inherited from module Cryplot::BaseMixin(Cryplot::Fill)

derived : T derived, repr : String repr, to_s(io : IO) : Nil to_s

Instance Method Detail

def repr : String #
Description copied from module Cryplot::BaseMixin(Cryplot::Fill)

returns a string representation of object of some class


[View source]
def to_s(io : IO) : Nil #
Description copied from class Reference

Appends a short String representation of this object which includes its class name and its object address.

class Person
  def initialize(@name : String, @age : Int32)
  end
end

Person.new("John", 32).to_s # => #<Person:0x10a199f20>

[View source]