.. index:: pair: class; EE::Math::Vector3 .. _doxid-class_e_e_1_1_math_1_1_vector3: template class EE::Math::Vector3 ================================ .. toctree:: :hidden: Overview ~~~~~~~~ Utility template class for manipulating 3-dimensional vectors. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include template class Vector3 { public: // fields T :target:`x`; T :target:`y`; T :target:`z`; // construction :ref:`Vector3`(); :ref:`Vector3`(T X, T Y, T Z); }; .. _details-class_e_e_1_1_math_1_1_vector3: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Utility template class for manipulating 3-dimensional vectors. Construction ------------ .. index:: pair: function; Vector3 .. _doxid-class_e_e_1_1_math_1_1_vector3_1a987e12de14abb5eec6b83c3b40b5edb2: .. ref-code-block:: cpp :class: doxyrest-title-code-block Vector3() Default constructor. Creates Vector3(0,0,0) .. index:: pair: function; Vector3 .. _doxid-class_e_e_1_1_math_1_1_vector3_1a510f132c001e32ff18c18c71c5d06aa2: .. ref-code-block:: cpp :class: doxyrest-title-code-block Vector3(T X, T Y, T Z) Creates a vector from its coordinates