Public Member Functions | Public Attributes | List of all members
sf::Vector3< T > Class Template Reference

Vector3 is an utility class for manipulating 3 dimensional vectors. More...

#include <Vector3.hpp>

Public Member Functions

 Vector3 ()
 Default constructor. More...
 
 Vector3 (T X, T Y, T Z)
 Construct the vector from its coordinates. More...
 

Public Attributes

x
 X coordinate of the vector. More...
 
y
 Y coordinate of the vector. More...
 
z
 Z coordinate of the vector. More...
 

Detailed Description

template<typename T>
class sf::Vector3< T >

Vector3 is an utility class for manipulating 3 dimensional vectors.

Template parameter defines the type of coordinates (integer, float, ...)

Definition at line 37 of file Vector3.hpp.

Constructor & Destructor Documentation

template<typename T>
Vector3::Vector3 ( )

Default constructor.

Definition at line 30 of file Vector3.inl.

template<typename T>
Vector3::Vector3 ( X,
Y,
Z 
)

Construct the vector from its coordinates.

Construct the color from its coordinates.

Parameters
X: X coordinate
Y: Y coordinate
Z: Z coordinate

Definition at line 43 of file Vector3.inl.

Member Data Documentation

template<typename T>
T sf::Vector3< T >::x

X coordinate of the vector.

Definition at line 60 of file Vector3.hpp.

template<typename T>
T sf::Vector3< T >::y

Y coordinate of the vector.

Definition at line 61 of file Vector3.hpp.

template<typename T>
T sf::Vector3< T >::z

Z coordinate of the vector.

Definition at line 62 of file Vector3.hpp.


The documentation for this class was generated from the following files: