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

GEO_mesh_remesh_blocks.h « geometry « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2aa3e57412fbc2307faa40ec171cab41e8b883c (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
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

/** \file
 * \ingroup geo
 */

#ifdef __cplusplus
extern "C" {
#endif

struct Mesh;

typedef enum eRemeshBlocksMode {
  /* Blocks. */
  REMESH_BLOCKS_CENTROID = 0,
  /* Smooth. */
  REMESH_BLOCKS_MASS_POINT = 1,
  /* Smooth with sharp edges. */
  REMESH_BLOCKS_SHARP_FEATURES = 2,
} eRemeshBlocksMode;

struct Mesh *GEO_mesh_remesh_blocks(const struct Mesh *mesh,
                                    const char remesh_flag,
                                    const eRemeshBlocksMode remesh_mode,
                                    const float threshold,
                                    const int hermite_num,
                                    const float scale,
                                    const int depth);

#ifdef __cplusplus
}
#endif