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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-01-20 03:48:29 +0300
committerCampbell Barton <campbell@blender.org>2022-01-20 03:59:20 +0300
commit1d536c21dd390e08d36cc398433e6a6ac2d9bdd5 (patch)
tree9f86ea33a870cb12c8176c5970254552f03369ae /source/blender/editors/sculpt_paint/sculpt_intern.h
parente3f9d9b206e60f61c80abc6b162f60c6fdcfdc6e (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_intern.h')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_intern.h15
1 files changed, 3 insertions, 12 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_intern.h b/source/blender/editors/sculpt_paint/sculpt_intern.h
index 20e0046d69b..53ecc4a8314 100644
--- a/source/blender/editors/sculpt_paint/sculpt_intern.h
+++ b/source/blender/editors/sculpt_paint/sculpt_intern.h
@@ -369,7 +369,6 @@ typedef struct {
struct DistRayAABB_Precalc *dist_ray_to_aabb_precalc;
} SculptSearchCircleData;
-
/* Sculpt Filters */
typedef enum SculptFilterOrientation {
SCULPT_FILTER_ORIENTATION_LOCAL = 0,
@@ -460,7 +459,6 @@ typedef struct FilterCache {
AutomaskingCache *automasking;
} FilterCache;
-
/**
* This structure contains all the temporary data
* needed for individual brush strokes.
@@ -783,7 +781,6 @@ typedef struct ExpandCache {
/** \} */
-
/* -------------------------------------------------------------------- */
/** \name Sculpt Poll Functions
* \{ */
@@ -820,7 +817,6 @@ void SCULPT_flush_stroke_deform(struct Sculpt *sd, Object *ob, bool is_proxy_use
void SCULPT_tag_update_overlays(bContext *C);
/** \} */
-
/* -------------------------------------------------------------------- */
/** \name Stroke Functions
* \{ */
@@ -854,7 +850,6 @@ float SCULPT_raycast_init(struct ViewContext *vc,
/* Symmetry */
char SCULPT_mesh_symmetry_xyz_get(Object *object);
-
/**
* Returns true when the step belongs to the stroke that is directly performed by the brush and
* not by one of the symmetry passes.
@@ -913,7 +908,6 @@ float *SCULPT_brush_deform_target_vertex_co_get(SculptSession *ss,
int deform_target,
PBVHVertexIter *iter);
-
void SCULPT_vertex_neighbors_get(struct SculptSession *ss,
int index,
bool include_duplicates,
@@ -927,7 +921,7 @@ void SCULPT_vertex_neighbors_get(struct SculptSession *ss,
neighbor_iterator.index = neighbor_iterator.neighbors[neighbor_iterator.i];
/** Iterate over neighboring and duplicate vertices (for PBVH_GRIDS). Duplicates come
- * first since they are nearest for floodfill. */
+ * first since they are nearest for floodfill. */
#define SCULPT_VERTEX_DUPLICATES_AND_NEIGHBORS_ITER_BEGIN(ss, v_index, neighbor_iterator) \
SCULPT_vertex_neighbors_get(ss, v_index, true, &neighbor_iterator); \
for (neighbor_iterator.i = neighbor_iterator.size - 1; neighbor_iterator.i >= 0; \
@@ -1115,10 +1109,9 @@ void SCULPT_flip_quat_by_symm_area(float quat[4],
ePaintSymmetryAreas symmarea,
const float pivot[3]);
-
/**
-* Initialize a point-in-brush test
-*/
+ * Initialize a point-in-brush test
+ */
void SCULPT_brush_test_init(struct SculptSession *ss, SculptBrushTest *test);
bool SCULPT_brush_test_sphere(SculptBrushTest *test, const float co[3]);
@@ -1435,8 +1428,6 @@ bool SCULPT_pbvh_calc_area_normal(const struct Brush *brush,
bool use_threading,
float r_area_no[3]);
-
-
/**
* Flip all the edit-data across the axis/axes specified by \a symm.
* Used to calculate multiple modifications to the mesh when symmetry is enabled.