xtd 0.2.0
smoothing_mode.h
Go to the documentation of this file.
1 #pragma once
5 #include "drawing2d.h"
6 #include <xtd/enum>
7 
9 namespace xtd {
11  namespace drawing {
13  namespace drawing_2d {
24  enum class smoothing_mode {
26  invalid = -1,
28  default_value = 0,
30  high_speed = 1,
32  high_quality = 2,
34  none = 3,
36  anti_alias = 4,
37  };
38  }
39  }
40 }
41 
45 };
smoothing_mode
Specifies whether smoothing (antialiasing) is applied to lines and curves and the edges of filled are...
Definition: smoothing_mode.h:24
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition: enum_collection.h:19
Specifies that pixels are offset by -.5 units, both horizontally and vertically, for high speed antia...
Contains xtd::drawing::drawing_2d/::matrix class.
Provides the registration struct for enumerations.
Definition: enum_register.h:36