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:
Diffstat (limited to 'source/blender/editors/gizmo_library/gizmo_library_intern.h')
-rw-r--r--source/blender/editors/gizmo_library/gizmo_library_intern.h97
1 files changed, 52 insertions, 45 deletions
diff --git a/source/blender/editors/gizmo_library/gizmo_library_intern.h b/source/blender/editors/gizmo_library/gizmo_library_intern.h
index 7712767c5ad..35782ea8b95 100644
--- a/source/blender/editors/gizmo_library/gizmo_library_intern.h
+++ b/source/blender/editors/gizmo_library/gizmo_library_intern.h
@@ -31,69 +31,76 @@
* Data for common interactions. Used in gizmo_library_utils.c functions.
*/
typedef struct GizmoCommonData {
- float range_fac; /* factor for arrow min/max distance */
- float offset;
+ float range_fac; /* factor for arrow min/max distance */
+ float offset;
- /* property range for constrained gizmos */
- float range;
- /* min/max value for constrained gizmos */
- float min, max;
+ /* property range for constrained gizmos */
+ float range;
+ /* min/max value for constrained gizmos */
+ float min, max;
- uint is_custom_range_set : 1;
+ uint is_custom_range_set : 1;
} GizmoCommonData;
typedef struct GizmoInteraction {
- float init_value; /* initial property value */
- float init_mval[2];
- float init_offset;
- float init_matrix_final[4][4];
- float init_matrix_basis[4][4];
-
- /* offset of last handling step */
- float prev_offset;
- /* Total offset added by precision tweaking.
- * Needed to allow toggling precision on/off without causing jumps */
- float precision_offset;
+ float init_value; /* initial property value */
+ float init_mval[2];
+ float init_offset;
+ float init_matrix_final[4][4];
+ float init_matrix_basis[4][4];
+
+ /* offset of last handling step */
+ float prev_offset;
+ /* Total offset added by precision tweaking.
+ * Needed to allow toggling precision on/off without causing jumps */
+ float precision_offset;
} GizmoInteraction;
-float gizmo_offset_from_value(
- GizmoCommonData *data, const float value,
- const bool constrained, const bool inverted);
-float gizmo_value_from_offset(
- GizmoCommonData *data, GizmoInteraction *inter, const float offset,
- const bool constrained, const bool inverted, const bool use_precision);
-
-void gizmo_property_data_update(
- struct wmGizmo *gz, GizmoCommonData *data, wmGizmoProperty *gz_prop,
- const bool constrained, const bool inverted);
-
-void gizmo_property_value_reset(
- bContext *C, const struct wmGizmo *gz, GizmoInteraction *inter, wmGizmoProperty *gz_prop);
-
+float gizmo_offset_from_value(GizmoCommonData *data,
+ const float value,
+ const bool constrained,
+ const bool inverted);
+float gizmo_value_from_offset(GizmoCommonData *data,
+ GizmoInteraction *inter,
+ const float offset,
+ const bool constrained,
+ const bool inverted,
+ const bool use_precision);
+
+void gizmo_property_data_update(struct wmGizmo *gz,
+ GizmoCommonData *data,
+ wmGizmoProperty *gz_prop,
+ const bool constrained,
+ const bool inverted);
+
+void gizmo_property_value_reset(bContext *C,
+ const struct wmGizmo *gz,
+ GizmoInteraction *inter,
+ wmGizmoProperty *gz_prop);
/* -------------------------------------------------------------------- */
-void gizmo_color_get(
- const struct wmGizmo *gz, const bool highlight,
- float r_color[4]);
+void gizmo_color_get(const struct wmGizmo *gz, const bool highlight, float r_color[4]);
-bool gizmo_window_project_2d(
- bContext *C, const struct wmGizmo *gz, const float mval[2], int axis, bool use_offset,
- float r_co[2]);
+bool gizmo_window_project_2d(bContext *C,
+ const struct wmGizmo *gz,
+ const float mval[2],
+ int axis,
+ bool use_offset,
+ float r_co[2]);
bool gizmo_window_project_3d(
- bContext *C, const struct wmGizmo *gz, const float mval[2], bool use_offset,
- float r_co[3]);
+ bContext *C, const struct wmGizmo *gz, const float mval[2], bool use_offset, float r_co[3]);
/* -------------------------------------------------------------------- */
/* Gizmo drawing */
#include "gizmo_geometry.h"
-void wm_gizmo_geometryinfo_draw(const struct GizmoGeomInfo *info, const bool select, const float color[4]);
+void wm_gizmo_geometryinfo_draw(const struct GizmoGeomInfo *info,
+ const bool select,
+ const float color[4]);
void wm_gizmo_vec_draw(
- const float color[4], const float (*verts)[3], uint vert_count,
- uint pos, uint primitive_type);
-
+ const float color[4], const float (*verts)[3], uint vert_count, uint pos, uint primitive_type);
-#endif /* __GIZMO_LIBRARY_INTERN_H__ */
+#endif /* __GIZMO_LIBRARY_INTERN_H__ */