AlbumShaper 1.0a3
DPoint Class Reference

#include <tilt_internal.h>

Collaboration diagram for DPoint:

Public Member Functions

 DPoint ()
 
 DPoint (double x, double y)
 
double x () const
 
double y () const
 

Private Attributes

double xpos
 
double ypos
 

Detailed Description

Definition at line 17 of file tilt_internal.h.

Constructor & Destructor Documentation

◆ DPoint() [1/2]

DPoint::DPoint ( )

Definition at line 450 of file tilt.cpp.

451{ xpos=0; ypos=0; }
double ypos
double xpos

References xpos, and ypos.

◆ DPoint() [2/2]

DPoint::DPoint ( double x,
double y )

Definition at line 453 of file tilt.cpp.

454{
455 this->xpos = x;
456 this->ypos = y;
457}
double y() const
Definition tilt.cpp:460
double x() const
Definition tilt.cpp:459

References x(), xpos, y(), and ypos.

Member Function Documentation

◆ x()

double DPoint::x ( ) const

Definition at line 459 of file tilt.cpp.

459{ return xpos; }

References xpos.

Referenced by correctImageTilt(), DPoint(), and findTwoLineIntersection().

◆ y()

double DPoint::y ( ) const

Definition at line 460 of file tilt.cpp.

460{ return ypos; }

References ypos.

Referenced by correctImageTilt(), DPoint(), and findTwoLineIntersection().

Member Data Documentation

◆ xpos

double DPoint::xpos
private

Definition at line 25 of file tilt_internal.h.

Referenced by DPoint(), DPoint(), and x().

◆ ypos

double DPoint::ypos
private

Definition at line 25 of file tilt_internal.h.

Referenced by DPoint(), DPoint(), and y().


The documentation for this class was generated from the following files: