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

BKE_mball_tessellate.h « blenkernel « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0840c51bb4d9a4093f650c9b4588f865bd01a4d6 (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
/* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once

/** \file
 * \ingroup bke
 */

#ifdef __cplusplus
extern "C" {
#endif

struct Depsgraph;
struct Object;
struct Scene;
struct Mesh;

struct Mesh *BKE_mball_polygonize(struct Depsgraph *depsgraph,
                                  struct Scene *scene,
                                  struct Object *ob);

void BKE_mball_cubeTable_free(void);

#ifdef __cplusplus
}
#endif