35 lines
845 B
C++
35 lines
845 B
C++
/**
|
|
*******************************************************************************
|
|
* @file etk/math/Vector4D.h
|
|
* @brief Ewol Tool Kit : Vector 4 dimention (x, y, z, w) or (x, y, width, height)
|
|
* @author Edouard DUPIN
|
|
* @date 26/10/2012
|
|
* @par Project
|
|
* Ewol TK
|
|
*
|
|
* @par Copyright
|
|
* Copyright 2011 Edouard DUPIN, all right reserved
|
|
*
|
|
* This software is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY.
|
|
*
|
|
* Licence summary :
|
|
* You can modify and redistribute the sources code and binaries.
|
|
* You can send me the bug-fix
|
|
*
|
|
* Term of the licence in in the file licence.txt.
|
|
*
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#ifndef __ETK_MATH_VECTOR4D_H__
|
|
#define __ETK_MATH_VECTOR4D_H__
|
|
|
|
namespace etk
|
|
{
|
|
//template <typename T> class Vector4D
|
|
};
|
|
|
|
#endif
|
|
|