Definition at line 151 of file Geometry.h.
◆ Offset() [1/5]
| Magick::Offset::Offset |
( |
void | | ) |
|
Definition at line 483 of file Geometry.cpp.
484 : _x(0),
485 _y(0)
486{
487}
◆ Offset() [2/5]
| Magick::Offset::Offset |
( |
const char * | offset_ | ) |
|
Definition at line 489 of file Geometry.cpp.
490 : _x(0),
491 _y(0)
492{
493 *this=offset_;
494}
◆ Offset() [3/5]
| Magick::Offset::Offset |
( |
const Offset & | offset_ | ) |
|
Definition at line 496 of file Geometry.cpp.
497 : _x(offset_._x),
498 _y(offset_._y)
499{
500}
◆ Offset() [4/5]
| Magick::Offset::Offset |
( |
const std::string & | offset_ | ) |
|
Definition at line 502 of file Geometry.cpp.
503 : _x(0),
504 _y(0)
505{
506 *this=offset_;
507}
◆ Offset() [5/5]
| Magick::Offset::Offset |
( |
ssize_t | x_, |
|
|
ssize_t | y_ ) |
Definition at line 509 of file Geometry.cpp.
510 : _x(x_),
511 _y(y_)
512{
513}
◆ ~Offset()
| Magick::Offset::~Offset |
( |
void | | ) |
|
◆ operator MagickCore::OffsetInfo()
| Magick::Offset::operator MagickCore::OffsetInfo |
( |
| ) |
const |
Definition at line 562 of file Geometry.cpp.
563{
564 OffsetInfo offset;
565 offset.x=_x;
566 offset.y=_y;
567 return(offset);
568}
◆ operator=() [1/3]
| const Magick::Offset & Magick::Offset::operator= |
( |
const char * | offset_ | ) |
|
Definition at line 519 of file Geometry.cpp.
520{
521 MagickCore::GeometryInfo
522 geometry_info;
523
524 MagickCore::MagickStatusType
525 flags;
526
527 flags=ParseGeometry(offset_,&geometry_info);
528 _x=(ssize_t) geometry_info.rho;
529 _y=(ssize_t) geometry_info.sigma;
530 if ((flags & MagickCore::SigmaValue) == 0)
531 _y=_x;
532 return(*this);
533}
◆ operator=() [2/3]
Definition at line 535 of file Geometry.cpp.
536{
537
538 if (this != &offset_)
539 {
540 _x=offset_._x;
541 _y=offset_._y;
542 }
543 return(*this);
544}
◆ operator=() [3/3]
| const Magick::Offset & Magick::Offset::operator= |
( |
const std::string & | offset_ | ) |
|
Definition at line 546 of file Geometry.cpp.
547{
548 *this=offset_.c_str();
549 return(*this);
550}
◆ x()
| ssize_t Magick::Offset::x |
( |
void | | ) |
const |
◆ y()
| ssize_t Magick::Offset::y |
( |
void | | ) |
const |
◆ _x
| ssize_t Magick::Offset::_x |
|
private |
◆ _y
| ssize_t Magick::Offset::_y |
|
private |
The documentation for this class was generated from the following files:
- /home/cristy/Attic/Build/ImageMagick-7.1.2/rpmbuild/BUILD/ImageMagick-7.1.2-build/ImageMagick-7.1.2-32/Magick++/lib/Magick++/Geometry.h
- /home/cristy/Attic/Build/ImageMagick-7.1.2/rpmbuild/BUILD/ImageMagick-7.1.2-build/ImageMagick-7.1.2-32/Magick++/lib/Geometry.cpp