g4tools  5.4.0
Public Member Functions | Public Attributes | List of all members
tools::hplot::_text Class Reference

Public Member Functions

 _text (double aX, double aY, double aAngle, double aSize, const std::string &aString, short aAlign)
 
virtual ~_text ()
 
 _text (const _text &aFrom)
 
_textoperator= (const _text &aFrom)
 

Public Attributes

double fX
 
double fY
 
double fAngle
 
double fSize
 
std::string fString
 
short fAlign
 

Detailed Description

Definition at line 34 of file hplot.

Constructor & Destructor Documentation

◆ _text() [1/2]

tools::hplot::_text::_text ( double  aX,
double  aY,
double  aAngle,
double  aSize,
const std::string &  aString,
short  aAlign 
)
inline

Definition at line 36 of file hplot.

40  :fX(aX),fY(aY)
41  ,fAngle(aAngle),fSize(aSize)
42  ,fString(aString),fAlign(aAlign)
43  {}

◆ ~_text()

virtual tools::hplot::_text::~_text ( )
inlinevirtual

Definition at line 44 of file hplot.

44 {}

◆ _text() [2/2]

tools::hplot::_text::_text ( const _text aFrom)
inline

Definition at line 46 of file hplot.

47  :fX(aFrom.fX),fY(aFrom.fY)
48  ,fAngle(aFrom.fAngle),fSize(aFrom.fSize)
49  ,fString(aFrom.fString)
50  ,fAlign(aFrom.fAlign)
51  {}

Member Function Documentation

◆ operator=()

_text& tools::hplot::_text::operator= ( const _text aFrom)
inline

Definition at line 52 of file hplot.

52  {
53  fX = aFrom.fX;
54  fY = aFrom.fY;
55  fAngle = aFrom.fAngle;
56  fSize = aFrom.fSize;
57  fString = aFrom.fString;
58  fAlign = aFrom.fAlign;
59  return *this;
60  }

Member Data Documentation

◆ fAlign

short tools::hplot::_text::fAlign

Definition at line 67 of file hplot.

◆ fAngle

double tools::hplot::_text::fAngle

Definition at line 64 of file hplot.

◆ fSize

double tools::hplot::_text::fSize

Definition at line 65 of file hplot.

◆ fString

std::string tools::hplot::_text::fString

Definition at line 66 of file hplot.

◆ fX

double tools::hplot::_text::fX

Definition at line 62 of file hplot.

◆ fY

double tools::hplot::_text::fY

Definition at line 63 of file hplot.


The documentation for this class was generated from the following file:
tools::hplot::_text::fSize
double fSize
Definition: hplot:65
tools::hplot::_text::fY
double fY
Definition: hplot:63
tools::hplot::_text::fString
std::string fString
Definition: hplot:66
tools::hplot::_text::fX
double fX
Definition: hplot:62
tools::hplot::_text::fAlign
short fAlign
Definition: hplot:67
tools::hplot::_text::fAngle
double fAngle
Definition: hplot:64