libpgplotxx.a (C++ interface to PGPLOT)

◆ Tbbox() [1/2]

pgplot::Tbbox::Tbbox ( )

default constructor

Definition at line 26 of file structs.cc.

References coor, pgplot::Tcoor::x, and pgplot::Tcoor::y.

27  {
28  for (int i=0; i<4 ; ++i)
29  {
30  this->coor[i].x=0;
31  this->coor[i].y=0;
32  }
33  }
float y
y-coordinate shift coordinate by a vector c
Definition: structs.h:188
Tcoor coor[4]
coordinates of four corners default constructor
Definition: structs.h:205
float x
x-coordinate
Definition: structs.h:187