tahoma2d/toonz/sources/include/tlin/tlin_basicops.h

32 lines
801 B
C
Raw Normal View History

2016-03-19 06:57:51 +13:00
#ifndef TLIN_BASICOPS_H
#define TLIN_BASICOPS_H
namespace tlin
{
//------------------------------------------------------------------------------
template <typename _IN1, typename _IN2, typename _OUT>
void mult(const _IN1 &, const _IN2 &, _OUT &);
//------------------------------------------------------------------------------
template <typename _IN1, typename _IN2, typename _OUT>
void sum(const _IN1 &, const _IN2 &, _OUT &);
//------------------------------------------------------------------------------
template <typename _IN1, typename _IN2, typename _OUT>
void sub(const _IN1 &, const _IN2 &, _OUT &);
//------------------------------------------------------------------------------
template <typename _T>
void transpose(const _T &);
} //namespace tlin
#endif //TLIN_BASICOPS_H