|
| PathCurvetoArgs (double x1_, double y1_, double x2_, double y2_, double x_, double y_) |
|
| PathCurvetoArgs (const PathCurvetoArgs &original_) |
|
void | x1 (double x1_) |
|
double | x1 (void) const |
|
void | y1 (double y1_) |
|
double | y1 (void) const |
|
void | x2 (double x2_) |
|
double | x2 (void) const |
|
void | y2 (double y2_) |
|
double | y2 (void) const |
|
void | x (double x_) |
|
double | x (void) const |
|
void | y (double y_) |
|
double | y (void) const |
|
Definition at line 2540 of file Drawable.h.
◆ PathCurvetoArgs() [1/3]
Magick::PathCurvetoArgs::PathCurvetoArgs |
( |
void | | ) |
|
Definition at line 1941 of file Drawable.cpp.
1942 : _x1(0),
1943 _y1(0),
1944 _x2(0),
1945 _y2(0),
1946 _x(0),
1947 _y(0)
1948{
1949}
◆ PathCurvetoArgs() [2/3]
Magick::PathCurvetoArgs::PathCurvetoArgs |
( |
double | x1_, |
|
|
double | y1_, |
|
|
double | x2_, |
|
|
double | y2_, |
|
|
double | x_, |
|
|
double | y_ ) |
Definition at line 1951 of file Drawable.cpp.
1954 : _x1(x1_),
1955 _y1(y1_),
1956 _x2(x2_),
1957 _y2(y2_),
1958 _x(x_),
1959 _y(y_)
1960{
1961}
◆ PathCurvetoArgs() [3/3]
Magick::PathCurvetoArgs::PathCurvetoArgs |
( |
const PathCurvetoArgs & | original_ | ) |
|
Definition at line 1963 of file Drawable.cpp.
1964 : _x1(original_._x1),
1965 _y1(original_._y1),
1966 _x2(original_._x2),
1967 _y2(original_._y2),
1968 _x(original_._x),
1969 _y(original_._y)
1970{
1971}
◆ ~PathCurvetoArgs()
Magick::PathCurvetoArgs::~PathCurvetoArgs |
( |
void | | ) |
|
◆ x() [1/2]
void Magick::PathCurvetoArgs::x |
( |
double | x_ | ) |
|
|
inline |
◆ x() [2/2]
double Magick::PathCurvetoArgs::x |
( |
void | | ) |
const |
|
inline |
Definition at line 2593 of file Drawable.h.
2594{
2595 return _x;
2596}
◆ x1() [1/2]
void Magick::PathCurvetoArgs::x1 |
( |
double | x1_ | ) |
|
|
inline |
Definition at line 2553 of file Drawable.h.
2554 {
2555 _x1 = x1_;
2556 }
◆ x1() [2/2]
double Magick::PathCurvetoArgs::x1 |
( |
void | | ) |
const |
|
inline |
Definition at line 2557 of file Drawable.h.
2558{
2559 return _x1;
2560}
◆ x2() [1/2]
void Magick::PathCurvetoArgs::x2 |
( |
double | x2_ | ) |
|
|
inline |
Definition at line 2571 of file Drawable.h.
2572{
2573 _x2 = x2_;
2574}
◆ x2() [2/2]
double Magick::PathCurvetoArgs::x2 |
( |
void | | ) |
const |
|
inline |
Definition at line 2575 of file Drawable.h.
2576{
2577 return _x2;
2578}
◆ y() [1/2]
void Magick::PathCurvetoArgs::y |
( |
double | y_ | ) |
|
|
inline |
◆ y() [2/2]
double Magick::PathCurvetoArgs::y |
( |
void | | ) |
const |
|
inline |
Definition at line 2602 of file Drawable.h.
2603{
2604 return _y;
2605}
◆ y1() [1/2]
void Magick::PathCurvetoArgs::y1 |
( |
double | y1_ | ) |
|
|
inline |
Definition at line 2562 of file Drawable.h.
2563{
2564 _y1 = y1_;
2565}
◆ y1() [2/2]
double Magick::PathCurvetoArgs::y1 |
( |
void | | ) |
const |
|
inline |
Definition at line 2566 of file Drawable.h.
2567{
2568 return _y1;
2569}
◆ y2() [1/2]
void Magick::PathCurvetoArgs::y2 |
( |
double | y2_ | ) |
|
|
inline |
Definition at line 2580 of file Drawable.h.
2581{
2582 _y2 = y2_;
2583}
◆ y2() [2/2]
double Magick::PathCurvetoArgs::y2 |
( |
void | | ) |
const |
|
inline |
Definition at line 2584 of file Drawable.h.
2585{
2586 return _y2;
2587}
◆ _x
double Magick::PathCurvetoArgs::_x |
|
private |
◆ _x1
double Magick::PathCurvetoArgs::_x1 |
|
private |
◆ _x2
double Magick::PathCurvetoArgs::_x2 |
|
private |
◆ _y
double Magick::PathCurvetoArgs::_y |
|
private |
◆ _y1
double Magick::PathCurvetoArgs::_y1 |
|
private |
◆ _y2
double Magick::PathCurvetoArgs::_y2 |
|
private |
The documentation for this class was generated from the following files: