g4tools  5.4.0
Public Member Functions | Public Attributes | List of all members
tools::sg::rep_box Class Reference

Public Member Functions

 rep_box (float a_pos, float a_width, bool a_log)
 
 rep_box (const rep_box &a_from)
 
rep_boxoperator= (const rep_box &a_from)
 

Public Attributes

float m_pos
 
float m_width
 
bool m_log
 

Detailed Description

Definition at line 126 of file rep.

Constructor & Destructor Documentation

◆ rep_box() [1/2]

tools::sg::rep_box::rep_box ( float  a_pos,
float  a_width,
bool  a_log 
)
inline

Definition at line 128 of file rep.

129  :m_pos(a_pos),m_width(a_width),m_log(a_log){}

◆ rep_box() [2/2]

tools::sg::rep_box::rep_box ( const rep_box a_from)
inline

Definition at line 131 of file rep.

132  :m_pos(a_from.m_pos),m_width(a_from.m_width),m_log(a_from.m_log){}

Member Function Documentation

◆ operator=()

rep_box& tools::sg::rep_box::operator= ( const rep_box a_from)
inline

Definition at line 134 of file rep.

134  {
135  m_pos = a_from.m_pos;
136  m_width = a_from.m_width;
137  m_log = a_from.m_log;
138  return *this;
139  }

Member Data Documentation

◆ m_log

bool tools::sg::rep_box::m_log

Definition at line 143 of file rep.

◆ m_pos

float tools::sg::rep_box::m_pos

Definition at line 141 of file rep.

◆ m_width

float tools::sg::rep_box::m_width

Definition at line 142 of file rep.


The documentation for this class was generated from the following file:
tools::sg::rep_box::m_pos
float m_pos
Definition: rep:141
tools::sg::rep_box::m_log
bool m_log
Definition: rep:143
tools::sg::rep_box::m_width
float m_width
Definition: rep:142