|
| | 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 2441 of file Drawable.h.
◆ PathCurvetoArgs() [1/3]
| Magick::PathCurvetoArgs::PathCurvetoArgs |
( |
void | | ) |
|
Definition at line 1751 of file Drawable.cpp.
1752 : _x1(0),
1753 _y1(0),
1754 _x2(0),
1755 _y2(0),
1756 _x(0),
1757 _y(0)
1758{
1759}
◆ PathCurvetoArgs() [2/3]
| Magick::PathCurvetoArgs::PathCurvetoArgs |
( |
double | x1_, |
|
|
double | y1_, |
|
|
double | x2_, |
|
|
double | y2_, |
|
|
double | x_, |
|
|
double | y_ ) |
Definition at line 1761 of file Drawable.cpp.
1764 : _x1(x1_),
1765 _y1(y1_),
1766 _x2(x2_),
1767 _y2(y2_),
1768 _x(x_),
1769 _y(y_)
1770{
1771}
◆ PathCurvetoArgs() [3/3]
| Magick::PathCurvetoArgs::PathCurvetoArgs |
( |
const PathCurvetoArgs & | original_ | ) |
|
Definition at line 1773 of file Drawable.cpp.
1774 : _x1(original_._x1),
1775 _y1(original_._y1),
1776 _x2(original_._x2),
1777 _y2(original_._y2),
1778 _x(original_._x),
1779 _y(original_._y)
1780{
1781}
◆ ~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 2494 of file Drawable.h.
2495{
2496 return _x;
2497}
◆ x1() [1/2]
| void Magick::PathCurvetoArgs::x1 |
( |
double | x1_ | ) |
|
|
inline |
Definition at line 2454 of file Drawable.h.
2455 {
2456 _x1 = x1_;
2457 }
◆ x1() [2/2]
| double Magick::PathCurvetoArgs::x1 |
( |
void | | ) |
const |
|
inline |
Definition at line 2458 of file Drawable.h.
2459{
2460 return _x1;
2461}
◆ x2() [1/2]
| void Magick::PathCurvetoArgs::x2 |
( |
double | x2_ | ) |
|
|
inline |
Definition at line 2472 of file Drawable.h.
2473{
2474 _x2 = x2_;
2475}
◆ x2() [2/2]
| double Magick::PathCurvetoArgs::x2 |
( |
void | | ) |
const |
|
inline |
Definition at line 2476 of file Drawable.h.
2477{
2478 return _x2;
2479}
◆ y() [1/2]
| void Magick::PathCurvetoArgs::y |
( |
double | y_ | ) |
|
|
inline |
◆ y() [2/2]
| double Magick::PathCurvetoArgs::y |
( |
void | | ) |
const |
|
inline |
Definition at line 2503 of file Drawable.h.
2504{
2505 return _y;
2506}
◆ y1() [1/2]
| void Magick::PathCurvetoArgs::y1 |
( |
double | y1_ | ) |
|
|
inline |
Definition at line 2463 of file Drawable.h.
2464{
2465 _y1 = y1_;
2466}
◆ y1() [2/2]
| double Magick::PathCurvetoArgs::y1 |
( |
void | | ) |
const |
|
inline |
Definition at line 2467 of file Drawable.h.
2468{
2469 return _y1;
2470}
◆ y2() [1/2]
| void Magick::PathCurvetoArgs::y2 |
( |
double | y2_ | ) |
|
|
inline |
Definition at line 2481 of file Drawable.h.
2482{
2483 _y2 = y2_;
2484}
◆ y2() [2/2]
| double Magick::PathCurvetoArgs::y2 |
( |
void | | ) |
const |
|
inline |
Definition at line 2485 of file Drawable.h.
2486{
2487 return _y2;
2488}
◆ _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: