Welcome to mirror list, hosted at ThFree Co, Russian Federation.

intersect_classify_common.hpp « lib « carve « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab59f27b029239963ffcab1dbb39aca5ad03fb11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Begin License:
// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com).
// All rights reserved.
//
// This file is part of the Carve CSG Library (http://carve-csg.com/)
//
// This file may be used under the terms of either the GNU General
// Public License version 2 or 3 (at your option) as published by the
// Free Software Foundation and appearing in the files LICENSE.GPL2
// and LICENSE.GPL3 included in the packaging of this file.
//
// This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
// INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE.
// End:


#pragma once

#include "intersect_common.hpp"

template<typename T>
static int is_same(const std::vector<T> &a,
                   const std::vector<T> &b) {
  if (a.size() != b.size()) return false;

  const size_t S = a.size();
  size_t i, j, p;

  for (p = 0; p < S; ++p) {
    if (a[0] == b[p]) break;
  }
  if (p == S) return 0;

  for (i = 1, j = p + 1; j < S; ++i, ++j) if (a[i] != b[j]) goto not_fwd;
  for (       j = 0;     i < S; ++i, ++j) if (a[i] != b[j]) goto not_fwd;
  return +1;

not_fwd:
  for (i = 1, j = p - 1; j != (size_t)-1; ++i, --j) if (a[i] != b[j]) goto not_rev;
  for (       j = S - 1;           i < S; ++i, --j) if (a[i] != b[j]) goto not_rev;
  return -1;

not_rev:
  return 0;
}