Return a new Wx::Size with the width and height values both divided by parameter div, which should be a Numeric
Source Code
# File wx/classes/size.rb, line 8 def /(div) self.class.new( (get_x / div).to_i, (get_y / div).to_i ) end
Return a new Wx::Size with the width and height values both divided by parameter div, which should be a Numeric
# File wx/classes/size.rb, line 8 def /(div) self.class.new( (get_x / div).to_i, (get_y / div).to_i ) end
<code/>and<pre/>for code samples.