5#include "../../drawing_export.hpp"
8#include "../rectangle.hpp"
18 namespace drawing_2d {
127 float radius() const noexcept;
135 void recreate_handle();
Provides methods for creating, manipulating, searching, and sorting arrays, thereby serving as the ba...
Definition array.hpp:61
Represents a strongly typed list of objects that can be accessed by index. Provides methods to search...
Definition list.hpp:80
Defines objects used to fill the interiors of graphical shapes such as rectangles,...
Definition brush.hpp:33
Represents an ARGB (alpha, red, green, blue) color.
Definition color.hpp:46
Encapsulates a xtd::drawing::brush with a radial gradient. This class cannot be inherited.
Definition radial_gradient_brush.hpp:29
radial_gradient_brush(const xtd::drawing::point ¢er, const xtd::array< xtd::drawing::color > &radial_colors, float radius)
Initializes a new instance of the xtd::drawing::drawing_2d::radial_gradient_brush class with the spec...
radial_gradient_brush(const xtd::drawing::point ¢er, const xtd::array< xtd::drawing::color > &radial_colors)
Initializes a new instance of the xtd::drawing::drawing_2d::radial_gradient_brush class with the spec...
radial_gradient_brush(const xtd::drawing::point_f ¢er, const xtd::array< xtd::drawing::color > &radial_colors, float radius)
Initializes a new instance of the xtd::drawing::drawing_2d::radial_gradient_brush class with the spec...
radial_gradient_brush(const xtd::drawing::point ¢er, const xtd::drawing::color &color1, const xtd::drawing::color &color2)
Initializes a new instance of the xtd::drawing::drawing_2d::radial_gradient_brush class with the spec...
radial_gradient_brush(const xtd::drawing::point ¢er, const xtd::drawing::color &color1, const xtd::drawing::color &color2, float radius)
Initializes a new instance of the xtd::drawing::drawing_2d::radial_gradient_brush class with the spec...
radial_gradient_brush(const xtd::drawing::point_f ¢er, const xtd::array< xtd::drawing::color > &radial_colors)
Initializes a new instance of the xtd::drawing::drawing_2d::radial_gradient_brush class with the spec...
radial_gradient_brush()
Initializes a new instance of the xtd::drawing::drawing_2d::radial_gradient_brush class with default ...
xtd::drawing::point_f center_point() const noexcept
Gets the center point of the radial gradient.
radial_gradient_brush(const xtd::drawing::point_f ¢er, const xtd::drawing::color &color1, const xtd::drawing::color &color2)
Initializes a new instance of the xtd::drawing::drawing_2d::radial_gradient_brush class with the spec...
radial_gradient_brush(const xtd::drawing::point_f ¢er, const xtd::drawing::color &color1, const xtd::drawing::color &color2, float radius)
Initializes a new instance of the xtd::drawing::drawing_2d::radial_gradient_brush class with the spec...
The xtd::shared_ptr_object is a shared pointer as std::shared_ptr.
Definition shared_ptr_object.hpp:30
Contains xtd::drawing::drawing_2d::gradient_stop alias.
#define drawing_export_
Define shared library export.
Definition drawing_export.hpp:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10
Represents an ordered pair of floating-point x- and y-coordinates that defines a point in a two-dimen...
Definition point_f.hpp:35
Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional ...
Definition point.hpp:54