g4tools  5.4.0
Public Member Functions | Public Attributes | List of all members
tools::zb::point Class Reference

Public Member Functions

 point ()
 
 point (const point &a_from)
 
pointoperator= (const point &a_from)
 

Public Attributes

ZPos x
 
ZPos y
 
ZZ z
 

Detailed Description

Definition at line 13 of file point.

Constructor & Destructor Documentation

◆ point() [1/2]

tools::zb::point::point ( )
inline

Definition at line 15 of file point.

15 :x(0),y(0),z(0){}

◆ point() [2/2]

tools::zb::point::point ( const point a_from)
inline

Definition at line 17 of file point.

17 :x(a_from.x),y(a_from.y),z(a_from.z){}

Member Function Documentation

◆ operator=()

point& tools::zb::point::operator= ( const point a_from)
inline

Definition at line 18 of file point.

18  {
19  x = a_from.x;
20  y = a_from.y;
21  z = a_from.z;
22  return *this;
23  }

Member Data Documentation

◆ x

ZPos tools::zb::point::x

Definition at line 25 of file point.

◆ y

ZPos tools::zb::point::y

Definition at line 26 of file point.

◆ z

ZZ tools::zb::point::z

Definition at line 27 of file point.


The documentation for this class was generated from the following file:
tools::zb::point::y
ZPos y
Definition: point:26
tools::zb::point::z
ZZ z
Definition: point:27
tools::zb::point::x
ZPos x
Definition: point:25