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

31 lines
817 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef TLIN_BASICOPS_H
#define TLIN_BASICOPS_H
2016-06-15 18:43:10 +12:00
namespace tlin {
2016-03-19 06:57:51 +13:00
//------------------------------------------------------------------------------
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 &);
2016-06-15 18:43:10 +12:00
} // namespace tlin
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
#endif // TLIN_BASICOPS_H