Sha256: c2fcf323874bd4d08757c5dc559982e2f31a5bacc85f3a240d580016a530ec91
Contents?: true
Size: 990 Bytes
Versions: 8
Compression:
Stored size: 990 Bytes
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx # {Wx::MirrorDC} is a simple wrapper class which is always associated with a real {Wx::DC} object and either forwards all of its operations to it without changes (no mirroring takes place) or exchanges x and y coordinates which makes it possible to reuse the same code to draw a figure and its mirror i.e. # reflection related to the diagonal line x == y. # # === # # Category: Device Contexts # class MirrorDC < DC # Creates a (maybe) mirrored DC associated with the real dc. # Everything drawn on {Wx::MirrorDC} will appear (and maybe mirrored) on dc. # mirror specifies if we do mirror (if it is true) or not (if it is false). # @param dc [Wx::DC] # @param mirror [true,false] # @return [MirrorDC] def initialize(dc, mirror) end end # MirrorDC end
Version data entries
8 entries across 8 versions & 1 rubygems