source: mmcs/armadillo_bits/op_flip_bones.hpp @ 8daa049

matrices
Last change on this file since 8daa049 was 9dd61b1, checked in by rboet <rboet@…>, 9 years ago

Avance del proyecto 60%

  • Property mode set to 100644
File size: 648 bytes
Line 
1// Copyright (C) 2010 Conrad Sanderson
2// Copyright (C) 2010 NICTA (www.nicta.com.au)
3//
4// This Source Code Form is subject to the terms of the Mozilla Public
5// License, v. 2.0. If a copy of the MPL was not distributed with this
6// file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
8
9//! \addtogroup op_flip
10//! @{
11
12
13
14class op_flipud
15  {
16  public:
17 
18  template<typename T1>
19  inline static void apply(Mat<typename T1::elem_type>& out, const Op<T1,op_flipud>& in);
20
21  };
22
23
24
25
26class op_fliplr
27  {
28  public:
29 
30  template<typename T1>
31  inline static void apply(Mat<typename T1::elem_type>& out, const Op<T1,op_fliplr>& in);
32
33  };
34
35
36
37//! @}
Note: See TracBrowser for help on using the repository browser.