Sha256: e380f22962adeba1389895af43d649e767e70cf8b4c8abc1eed3cfc75115ffcc
Contents?: true
Size: 558 Bytes
Versions: 12
Compression:
Stored size: 558 Bytes
Contents
# :stopdoc: # Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # :startdoc: module Wx class ScaledDC < Wx::DC private :initialize # Creates a Wx::ScaledDC instance for target and scale and # passes the instance to the given block to draw on. # @param [Wx::DC] target DC to draw on (scaled) # @param [Float] scale scale factor # @yieldparam [Wx::ScaledDC] dc scaled dc to draw on # @return [::Object] result from block def self.draw_on(target, scale) end end end
Version data entries
12 entries across 12 versions & 1 rubygems