From b198500c027231709686ed600cfeff8dde70d8cd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 26 Aug 2014 20:52:07 +1000 Subject: Move bUnit_getScaleUnit -> BKE_scene_unit_scale unit.c intentionally doesn't include DNA or BKE headers (except its own) --- source/blender/blenkernel/BKE_unit.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'source/blender/blenkernel/BKE_unit.h') diff --git a/source/blender/blenkernel/BKE_unit.h b/source/blender/blenkernel/BKE_unit.h index c7847947d33..b351bc6fe3e 100644 --- a/source/blender/blenkernel/BKE_unit.h +++ b/source/blender/blenkernel/BKE_unit.h @@ -31,8 +31,6 @@ extern "C" { #endif -struct UnitSettings; - /* in all cases the value is assumed to be scaled by the user preference */ /* humanly readable representation of a value in units (used for button drawing) */ @@ -41,11 +39,6 @@ size_t bUnit_AsString(char *str, int len_max, double value, int prec, int syste /* replace units with values, used before python button evaluation */ bool bUnit_ReplaceString(char *str, int len_max, const char *str_prev, double scale_pref, int system, int type); -/* Apply the needed correction factor to value, based on unit_type (only length-related are affected currently) - * and unit->scale_length. - */ -double bUnit_getScaleUnit(struct UnitSettings *unit, const int unit_type, double value); - /* make string keyboard-friendly: 10µm --> 10um */ void bUnit_ToUnitAltName(char *str, int len_max, const char *orig_str, int system, int type); -- cgit v1.2.3