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:
-rw-r--r--source/blender/blenkernel/BKE_curveprofile.h2
-rw-r--r--source/blender/blenkernel/intern/curveprofile.c8
-rw-r--r--source/blender/editors/interface/interface_templates.c2
-rw-r--r--source/blender/makesrna/intern/rna_curveprofile.c3
4 files changed, 14 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_curveprofile.h b/source/blender/blenkernel/BKE_curveprofile.h
index 67f9095924a..501ae70ecdb 100644
--- a/source/blender/blenkernel/BKE_curveprofile.h
+++ b/source/blender/blenkernel/BKE_curveprofile.h
@@ -66,6 +66,8 @@ void BKE_curveprofile_selected_handle_set(struct CurveProfile *profile, int type
void BKE_curveprofile_reverse(struct CurveProfile *profile);
+void BKE_curveprofile_reset_view(struct CurveProfile *profile);
+
void BKE_curveprofile_reset(struct CurveProfile *profile);
void BKE_curveprofile_create_samples(struct CurveProfile *profile,
diff --git a/source/blender/blenkernel/intern/curveprofile.c b/source/blender/blenkernel/intern/curveprofile.c
index b7017253be1..752e0d4dfcf 100644
--- a/source/blender/blenkernel/intern/curveprofile.c
+++ b/source/blender/blenkernel/intern/curveprofile.c
@@ -436,6 +436,14 @@ static void curveprofile_build_steps(CurveProfile *profile)
}
/**
+ * Reset the view to the clipping rectangle.
+ */
+void BKE_curveprofile_reset_view(CurveProfile *profile)
+{
+ profile->view_rect = profile->clip_rect;
+}
+
+/**
* Resets the profile to the current preset.
*
* \note Requires #BKE_curveprofile_update call after.
diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c
index 0a625cc2b56..f3a545d5df5 100644
--- a/source/blender/editors/interface/interface_templates.c
+++ b/source/blender/editors/interface/interface_templates.c
@@ -4694,7 +4694,7 @@ static void CurveProfile_tools_dofunc(bContext *C, void *profile_v, int event)
BKE_curveprofile_update(profile, PROF_UPDATE_NONE);
break;
case UIPROFILE_FUNC_RESET_VIEW: /* reset view to clipping rect */
- profile->view_rect = profile->clip_rect;
+ BKE_curveprofile_reset_view(profile);
break;
}
ED_undo_push(C, "CurveProfile tools");
diff --git a/source/blender/makesrna/intern/rna_curveprofile.c b/source/blender/makesrna/intern/rna_curveprofile.c
index 25f0c5fb9b4..bb54d55f8bd 100644
--- a/source/blender/makesrna/intern/rna_curveprofile.c
+++ b/source/blender/makesrna/intern/rna_curveprofile.c
@@ -281,6 +281,9 @@ static void rna_def_curveprofile(BlenderRNA *brna)
func = RNA_def_function(srna, "update", "rna_CurveProfile_update");
RNA_def_function_ui_description(func, "Refresh internal data, remove doubles and clip points");
+ func = RNA_def_function(srna, "reset_view", "BKE_curveprofile_reset_view");
+ RNA_def_function_ui_description(func, "Reset the curve profile grid to its clipping size");
+
func = RNA_def_function(srna, "initialize", "rna_CurveProfile_initialize");
parm = RNA_def_int(func,
"totsegments",