AlbumShaper  1.0a3
Public Member Functions | Private Attributes | List of all members
DPoint Class Reference

#include <tilt_internal.h>

Collaboration diagram for DPoint:
Collaboration graph
[legend]

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.

References xpos, and ypos.

451 { xpos=0; ypos=0; }
double xpos
Definition: tilt_internal.h:25
double ypos
Definition: tilt_internal.h:25

§ DPoint() [2/2]

DPoint::DPoint ( double  x,
double  y 
)

Definition at line 453 of file tilt.cpp.

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

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

Member Function Documentation

§ x()

double DPoint::x ( ) const

Definition at line 459 of file tilt.cpp.

References xpos.

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

459 { return xpos; }
double xpos
Definition: tilt_internal.h:25

§ y()

double DPoint::y ( ) const

Definition at line 460 of file tilt.cpp.

References ypos.

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

460 { return ypos; }
double ypos
Definition: tilt_internal.h:25

Member Data Documentation

§ xpos

double DPoint::xpos
private

Definition at line 25 of file tilt_internal.h.

Referenced by DPoint(), and x().

§ ypos

double DPoint::ypos
private

Definition at line 25 of file tilt_internal.h.

Referenced by DPoint(), and y().


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