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

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

#pragma once

/** \file
 * \ingroup bke
 */

#ifdef __cplusplus
extern "C" {
#endif

struct Collection;
struct GeometrySet;
struct Object;

/* Each geometry component has a specific type. The type determines what kind of data the component
 * stores. Functions modifying a geometry will usually just modify a subset of the component types.
 */
typedef enum GeometryComponentType {
  GEO_COMPONENT_TYPE_MESH = 0,
  GEO_COMPONENT_TYPE_POINT_CLOUD = 1,
  GEO_COMPONENT_TYPE_INSTANCES = 2,
  GEO_COMPONENT_TYPE_VOLUME = 3,
  GEO_COMPONENT_TYPE_CURVE = 4,
  GEO_COMPONENT_TYPE_EDIT = 5,
} GeometryComponentType;

#define GEO_COMPONENT_TYPE_ENUM_SIZE 6

void BKE_geometry_set_free(struct GeometrySet *geometry_set);

bool BKE_object_has_geometry_set_instances(const struct Object *ob);

#ifdef __cplusplus
}
#endif