Sha256: cda7c68cfd570420f0a86e2a053fa0b669da5c7c80e492c019bb9853dbcffd54
Contents?: true
Size: 579 Bytes
Versions: 7
Compression:
Stored size: 579 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
7 entries across 7 versions & 1 rubygems