xtd 0.2.0
Loading...
Searching...
No Matches
line_joins.h
1#pragma once
3#if !defined(__XTD_DRAWING_NATIVE_LIBRARY__)
4#error "Do not include this file: Internal use only"
5#endif
7
8#include <xtd/types.h>
9
16constexpr xtd::int32 LJ_MITER = 0;
17
24
25constexpr xtd::int32 LJ_BEVEL = 1;
32
33constexpr xtd::int32 LJ_ROUND = 2;
constexpr xtd::int32 LJ_ROUND
Specifies a circular join. This produces a smooth, circular arc between the lines.
Definition line_joins.h:33
constexpr xtd::int32 LJ_MITER
Specifies a mitered join. This produces a sharp corner or a clipped corner, depending on whether the ...
Definition line_joins.h:16
constexpr xtd::int32 LJ_BEVEL
Specifies a beveled join. This produces a diagonal corner.
Definition line_joins.h:25
constexpr xtd::int32 LJ_MITER_CLIPPED
Specifies a mitered join. This produces a sharp corner or a beveled corner, depending on whether the ...
Definition line_joins.h:40
int32_t int32
Represents a 32-bit signed integer.
Definition int32.h:23
Contains xtd fundamental types.