1#ifndef SRC_UTILS_COORDINATE3D_H_
2#define SRC_UTILS_COORDINATE3D_H_
31 double x() {
return _vec[0]; }
32 double y() {
return _vec[1]; }
33 double z() {
return _vec[2]; }
36 void get(
double vec[3]);
The Coordinate3D class eases the handling of x y z coordinates in xml input.
Definition: Coordinate3D.h:10
double x()
Get x component of coordinate.
Definition: Coordinate3D.h:31
double z()
Get z component of coordinate.
Definition: Coordinate3D.h:33
double y()
Get y component of coordinate.
Definition: Coordinate3D.h:32
void get(double vec[3])
obtain coordinate vector values
Definition: Coordinate3D.cpp:17
void readXML(XMLfileUnits &xmlconfig)
Read in XML configuration for x y z coordinate.
Definition: Coordinate3D.cpp:11
XML file with unit attributes abstraction.
Definition: xmlfileUnits.h:25
::xsd::cxx::tree::string< char, simple_type > string
C++ type corresponding to the string XML Schema built-in type.
Definition: vtk-punstructured.h:270
XML input file with unit handling/conversion support.