Class: Wx::InterpolationQuality
- Inherits:
-
Enum
- Object
- Enum
- Wx::InterpolationQuality
- Defined in:
- lib/wx/doc/gen/graphics_object.rb,
lib/wx/doc/gen/graphics_context.rb
Overview
Interpolation quality used by GraphicsContext#set_interpolation_quality.
Constant Summary collapse
- INTERPOLATION_DEFAULT =
default interpolation, based on type of context, in general medium quality
Wx::InterpolationQuality.new(0)
- INTERPOLATION_NONE =
no interpolation
Wx::InterpolationQuality.new(1)
- INTERPOLATION_FAST =
fast interpolation, suited for interactivity
Wx::InterpolationQuality.new(2)
- INTERPOLATION_GOOD =
better quality
Wx::InterpolationQuality.new(3)
- INTERPOLATION_BEST =
best quality, not suited for interactivity
Wx::InterpolationQuality.new(4)