5#include "../../drawing_export.h"
8#include "../rectangle.h"
9#include "../rectangle_f.h"
11#include <xtd/iequatable>
26 namespace drawing_2d {
89 matrix(
float m11,
float m12,
float m21,
float m22,
float dx,
float dy);
122 bool is_identity() const;
126 bool is_invertible() const;
130 float offset_x() const;
134 float offset_y() const;
140 using
object::equals;
141 bool equals(const
xtd::drawing::drawing_2d::
matrix& value) const noexcept override;
160 void rotate(
float angle);
179 void scale(
float scale_x,
float scale_y);
184 void scale(
float scale_x,
float scale_y,
xtd::drawing::drawing_2d::
matrix_order order);
190 void shear(
float scale_x,
float scale_y);
196 void shear(
float scale_x,
float scale_y,
xtd::drawing::drawing_2d::
matrix_order order);
200 void transform_points(std::vector<
xtd::drawing::
point>& points);
203 void transform_points(std::vector<
xtd::drawing::
point_f>& points);
207 void transform_vectors(std::vector<
xtd::drawing::
point>& points);
210 void transform_vectors(std::vector<
xtd::drawing::
point_f>& points);
215 void translate(
float offset_x,
float offset_y);
220 void translate(
float offset_x,
float offset_y,
xtd::drawing::drawing_2d::
matrix_order order);
224 void vector_transform_points(std::vector<
xtd::drawing::
point>& points);
226 xtd::
string to_string() const noexcept override;
Encapsulates a 3-by-3 affine matrix that represents a geometric transform. This class cannot be inher...
Definition matrix.h:73
matrix(float m11, float m12, float m21, float m22, float dx, float dy)
Initializes a new instance of the xtd::drawing::drawing_2d::matrix class with the specified elements.
intptr handle() const noexcept
Gets the handle of the matrix.
std::vector< float > elements() const
Gets an array of floating-point values that represents the elements of this xtd::drawing::drawing_2d:...
matrix()
Initializes a new instance of the xtd::drawing::drawing_2d::matrix class as the identity matrix.
matrix(const xtd::drawing::rectangle &rect, const std::vector< xtd::drawing::point > &plgpts)
Initializes a new instance of the xtd::drawing::drawing_2d::matrix class to the geometric transform d...
matrix(const xtd::drawing::rectangle_f &rect, const std::vector< xtd::drawing::point_f > &plgpts)
Initializes a new instance of the xtd::drawing::drawing_2d::matrix class to the geometric transform d...
Defines an object used to draw lines and curves. This class cannot be inherited.
Definition graphics.h:70
Represents an ordered pair of floating-point x- and y-coordinates that defines a point in a two-dimen...
Definition point_f.h:35
Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional ...
Definition point.h:54
Stores a set of four floating-point numbers that represent the location and size of a rectangle....
Definition rectangle_f.h:34
Stores a set of four integers that represent the location and size of a rectangle.
Definition rectangle.h:44
Defines a generalized method that a value type or class implements to create a type-specific method f...
Definition iequatable.h:22
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes....
Definition object.h:42
#define drawing_export_
Define shared library export.
Definition drawing_export.h:13
intmax_t intptr
Represent a pointer or a handle.
Definition intptr.h:23
std::shared_ptr< type_t > sptr
The xtd::sptr object is a shared pointer.
Definition sptr.h:25
matrix_order
Specifies the order for matrix transform operations.
Definition matrix_order.h:20
Contains xtd::drawing::drawing_2d::matrix_order enum class.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10