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

region.h « intern « libmv « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47056b2fef6d24ffad15eb3181c1b452729b123f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2014 Blender Foundation. All rights reserved. */

#ifndef LIBMV_C_API_REGION_H_
#define LIBMV_C_API_REGION_H_

#ifdef __cplusplus
extern "C" {
#endif

typedef struct libmv_Region {
  float min[2];
  float max[2];
} libmv_Region;

#ifdef __cplusplus
}
#endif

#endif  // LIBMV_C_API_REGION_H_