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 <ideasman42@gmail.com>2019-02-11 02:51:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-11 02:51:25 +0300
commitffd0fee97c364866d387718a9ee172466054133b (patch)
tree3a057118eb8fd09e857853ae16277853cecd286a /source/blender/editors/gpencil
parent9ca6fc41ae7cc9d8e5ce89b10d1237c035ce5d63 (diff)
Cleanup: comment indentation & spelling
Diffstat (limited to 'source/blender/editors/gpencil')
-rw-r--r--source/blender/editors/gpencil/gpencil_brush.c5
-rw-r--r--source/blender/editors/gpencil/gpencil_utils.c4
2 files changed, 4 insertions, 5 deletions
diff --git a/source/blender/editors/gpencil/gpencil_brush.c b/source/blender/editors/gpencil/gpencil_brush.c
index c7020364fff..a409087c8fa 100644
--- a/source/blender/editors/gpencil/gpencil_brush.c
+++ b/source/blender/editors/gpencil/gpencil_brush.c
@@ -1244,9 +1244,8 @@ static bool gpsculpt_brush_init(bContext *C, wmOperator *op)
gso->is_multiframe = (bool)GPENCIL_MULTIEDIT_SESSIONS_ON(gso->gpd);
gso->use_multiframe_falloff = (ts->gp_sculpt.flag & GP_SCULPT_SETT_FLAG_FRAME_FALLOFF) != 0;
- /* init multiedit falloff curve data before doing anything,
- * so we won't have to do it again later
- */
+ /* Init multi-edit falloff curve data before doing anything,
+ * so we won't have to do it again later. */
if (gso->is_multiframe) {
curvemapping_initialize(ts->gp_sculpt.cur_falloff);
}
diff --git a/source/blender/editors/gpencil/gpencil_utils.c b/source/blender/editors/gpencil/gpencil_utils.c
index 210d234c6ad..0fe1412f2a9 100644
--- a/source/blender/editors/gpencil/gpencil_utils.c
+++ b/source/blender/editors/gpencil/gpencil_utils.c
@@ -720,8 +720,8 @@ void gp_point_to_xy_fl(
/**
-* generic based on gp_point_to_xy_fl
-*/
+ * generic based on gp_point_to_xy_fl
+ */
void gp_point_3d_to_xy(const GP_SpaceConversion *gsc, const short flag, const float pt[3], float xy[2])
{
const ARegion *ar = gsc->ar;