xtd 0.2.0
Loading...
Searching...
No Matches
line_join.h
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,
28 miter_clipped = 3,
29 };
30 }
31 }
32}
33
37};
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
line_join
Specifies how to join consecutive line or curve segments in a figure (subpath) contained in a xtd::dr...
Definition line_join.h:20
@ miter
Specifies a mitered join. This produces a sharp corner or a clipped corner, depending on whether the ...
@ round
Specifies a circular join. This produces a smooth, circular arc between the lines.
@ bevel
Specifies a beveled join. This produces a diagonal corner.
@ miter_clipped
Specifies a mitered join. This produces a sharp corner or a beveled corner, depending on whether the ...
@ round
Specifies a round line cap.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36