xtd 0.2.0
line_join.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace drawing {
12 namespace drawing_2d {
20 enum class line_join {
22 miter = 0,
24 bevel = 1,
26 round = 2,
29 };
30 }
31 }
32}
33
37};
std::vector< std::pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.hpp:24
line_join
Specifies how to join consecutive line or curve segments in a figure (subpath) contained in a xtd::dr...
Definition line_join.hpp:20
@ miter
Specifies a mitered join. This produces a sharp corner or a clipped corner, depending on whether the ...
Definition line_join.hpp:22
@ round
Specifies a circular join. This produces a smooth, circular arc between the lines.
Definition line_join.hpp:26
@ bevel
Specifies a beveled join. This produces a diagonal corner.
Definition line_join.hpp:24
@ miter_clipped
Specifies a mitered join. This produces a sharp corner or a beveled corner, depending on whether the ...
Definition line_join.hpp:28
@ round
Specifies a round line cap.
Definition line_cap.hpp:25
The xtd::drawing::drawing_2d namespace provides advanced two-dimensional and vector graphics function...
Definition compositing_mode.hpp:12
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Provides the registration struct for enumerations.
Definition enum_register.hpp:38