Blender V2.61 - r43446
|
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <assert.h>
#include "BKE_unit.h"
#include "BLI_math.h"
#include "BLI_string.h"
#include "BLI_winstuff.h"
Go to the source code of this file.
Classes | |
struct | bUnitDef |
struct | bUnitCollection |
Defines | |
#define | TEMP_STR_SIZE 256 |
#define | SEP_CHR '#' |
#define | SEP_STR "#" |
#define | EPS 0.00001 |
#define | UN_SC_KM 1000.0f |
#define | UN_SC_HM 100.0f |
#define | UN_SC_DAM 10.0f |
#define | UN_SC_M 1.0f |
#define | UN_SC_DM 0.1f |
#define | UN_SC_CM 0.01f |
#define | UN_SC_MM 0.001f |
#define | UN_SC_UM 0.000001f |
#define | UN_SC_MI 1609.344f |
#define | UN_SC_FUR 201.168f |
#define | UN_SC_CH 20.1168f |
#define | UN_SC_YD 0.9144f |
#define | UN_SC_FT 0.3048f |
#define | UN_SC_IN 0.0254f |
#define | UN_SC_MIL 0.0000254f |
#define | UN_SC_MTON 1000.0f |
#define | UN_SC_QL 100.0f |
#define | UN_SC_KG 1.0f |
#define | UN_SC_HG 0.1f |
#define | UN_SC_DAG 0.01f |
#define | UN_SC_G 0.001f |
#define | UN_SC_ITON 907.18474f |
#define | UN_SC_CWT 45.359237f |
#define | UN_SC_ST 6.35029318f |
#define | UN_SC_LB 0.45359237f |
#define | UN_SC_OZ 0.028349523125f |
#define | B_UNIT_DEF_NONE 0 |
#define | B_UNIT_DEF_SUPPRESS 1 |
#define | UNIT_SYSTEM_TOT (((sizeof(bUnitSystems) / 9) / sizeof(void *)) - 1) |
Typedefs | |
typedef struct bUnitDef | bUnitDef |
typedef struct bUnitCollection | bUnitCollection |
Functions | |
static bUnitCollection * | unit_get_system (int system, int type) |
static bUnitDef * | unit_default (bUnitCollection *usys) |
static bUnitDef * | unit_best_fit (double value, bUnitCollection *usys, bUnitDef *unit_start, int suppress) |
static void | unit_dual_convert (double value, bUnitCollection *usys, bUnitDef **unit_a, bUnitDef **unit_b, double *value_a, double *value_b) |
static int | unit_as_string (char *str, int len_max, double value, int prec, bUnitCollection *usys, bUnitDef *unit, char pad) |
void | bUnit_AsString (char *str, int len_max, double value, int prec, int system, int type, int split, int pad) |
static const char * | unit_find_str (const char *str, const char *substr) |
static int | ch_is_op (char op) |
static int | unit_scale_str (char *str, int len_max, char *str_tmp, double scale_pref, bUnitDef *unit, const char *replace_str) |
static int | unit_replace (char *str, int len_max, char *str_tmp, double scale_pref, bUnitDef *unit) |
static int | unit_find (const char *str, bUnitDef *unit) |
int | bUnit_ReplaceString (char *str, int len_max, const char *str_prev, double scale_pref, int system, int type) |
void | bUnit_ToUnitAltName (char *str, int len_max, const char *orig_str, int system, int type) |
double | bUnit_ClosestScalar (double value, int system, int type) |
double | bUnit_BaseScalar (int system, int type) |
int | bUnit_IsValid (int system, int type) |
void | bUnit_GetSystem (void **usys_pt, int *len, int system, int type) |
int | bUnit_GetBaseUnit (void *usys_pt) |
const char * | bUnit_GetName (void *usys_pt, int index) |
const char * | bUnit_GetNameDisplay (void *usys_pt, int index) |
double | bUnit_GetScaler (void *usys_pt, int index) |
Variables | |
static struct bUnitDef | buDummyDef [] |
static struct bUnitCollection | buDummyCollecton = {buDummyDef, 0, 0, sizeof(buDummyDef)} |
static struct bUnitDef | buMetricLenDef [] |
static struct bUnitCollection | buMetricLenCollecton = {buMetricLenDef, 3, 0, sizeof(buMetricLenDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buImperialLenDef [] |
static struct bUnitCollection | buImperialLenCollecton = {buImperialLenDef, 4, 0, sizeof(buImperialLenDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buMetricAreaDef [] |
static struct bUnitCollection | buMetricAreaCollecton = {buMetricAreaDef, 3, 0, sizeof(buMetricAreaDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buImperialAreaDef [] |
static struct bUnitCollection | buImperialAreaCollecton = {buImperialAreaDef, 4, 0, sizeof(buImperialAreaDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buMetricVolDef [] |
static struct bUnitCollection | buMetricVolCollecton = {buMetricVolDef, 3, 0, sizeof(buMetricVolDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buImperialVolDef [] |
static struct bUnitCollection | buImperialVolCollecton = {buImperialVolDef, 4, 0, sizeof(buImperialVolDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buMetricMassDef [] |
static struct bUnitCollection | buMetricMassCollecton = {buMetricMassDef, 2, 0, sizeof(buMetricMassDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buImperialMassDef [] |
static struct bUnitCollection | buImperialMassCollecton = {buImperialMassDef, 3, 0, sizeof(buImperialMassDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buMetricVelDef [] |
static struct bUnitCollection | buMetricVelCollecton = {buMetricVelDef, 0, 0, sizeof(buMetricVelDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buImperialVelDef [] |
static struct bUnitCollection | buImperialVelCollecton = {buImperialVelDef, 0, 0, sizeof(buImperialVelDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buMetricAclDef [] |
static struct bUnitCollection | buMetricAclCollecton = {buMetricAclDef, 0, 0, sizeof(buMetricAclDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buImperialAclDef [] |
static struct bUnitCollection | buImperialAclCollecton = {buImperialAclDef, 0, 0, sizeof(buImperialAclDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buNaturalTimeDef [] |
static struct bUnitCollection | buNaturalTimeCollecton = {buNaturalTimeDef, 3, 0, sizeof(buNaturalTimeDef)/sizeof(bUnitDef)} |
static struct bUnitDef | buNaturalRotDef [] |
static struct bUnitCollection | buNaturalRotCollection = {buNaturalRotDef, 0, 0, sizeof(buNaturalRotDef)/sizeof(bUnitDef)} |
static struct bUnitCollection * | bUnitSystems [][9] |
Definition in file unit.c.
#define B_UNIT_DEF_SUPPRESS 1 |
Definition at line 92 of file unit.c.
Referenced by unit_best_fit().
#define EPS 0.00001 |
Definition at line 44 of file unit.c.
Referenced by sweepCircleCircle(), and unit_best_fit().
#define SEP_CHR '#' |
Definition at line 41 of file unit.c.
Referenced by bUnit_ReplaceString().
#define SEP_STR "#" |
Definition at line 42 of file unit.c.
Referenced by unit_scale_str().
#define TEMP_STR_SIZE 256 |
Definition at line 39 of file unit.c.
Referenced by bUnit_ReplaceString(), and unit_scale_str().
#define UNIT_SYSTEM_TOT (((sizeof(bUnitSystems) / 9) / sizeof(void *)) - 1) |
Definition at line 270 of file unit.c.
Referenced by bUnit_IsValid(), bUnit_ReplaceString(), and unit_get_system().
typedef struct bUnitCollection bUnitCollection |
void bUnit_AsString | ( | char * | str, |
int | len_max, | ||
double | value, | ||
int | prec, | ||
int | system, | ||
int | type, | ||
int | split, | ||
int | pad | ||
) |
Definition at line 397 of file unit.c.
References B_UNIT_LENGTH, B_UNIT_MASS, B_UNIT_TIME, buDummyCollecton, i, bUnitDef::name, NULL, unit_as_string(), unit_dual_convert(), unit_get_system(), and bUnitCollection::units.
Referenced by draw_em_measure_stats(), headerTranslation(), and ui_get_but_string_unit().
double bUnit_BaseScalar | ( | int | system, |
int | type | ||
) |
Definition at line 739 of file unit.c.
References bUnitDef::scalar, unit_default(), and unit_get_system().
Referenced by ui_numedit_apply_snapf().
double bUnit_ClosestScalar | ( | double | value, |
int | system, | ||
int | type | ||
) |
Definition at line 724 of file unit.c.
References NULL, bUnitDef::scalar, unit_best_fit(), and unit_get_system().
Referenced by ui_get_but_step_unit().
int bUnit_GetBaseUnit | ( | void * | usys_pt | ) |
Definition at line 765 of file unit.c.
Referenced by drawfloor().
const char* bUnit_GetNameDisplay | ( | void * | usys_pt, |
int | index | ||
) |
Definition at line 774 of file unit.c.
Referenced by drawfloor(), and drawgrid().
double bUnit_GetScaler | ( | void * | usys_pt, |
int | index | ||
) |
Definition at line 779 of file unit.c.
Referenced by drawfloor(), and drawgrid().
void bUnit_GetSystem | ( | void ** | usys_pt, |
int * | len, | ||
int | system, | ||
int | type | ||
) |
Definition at line 752 of file unit.c.
References bUnitCollection::length, NULL, and unit_get_system().
Referenced by drawfloor(), and drawgrid().
int bUnit_IsValid | ( | int | system, |
int | type | ||
) |
Definition at line 746 of file unit.c.
References B_UNIT_TYPE_TOT, and UNIT_SYSTEM_TOT.
Referenced by ui_numedit_apply_snapf().
int bUnit_ReplaceString | ( | char * | str, |
int | len_max, | ||
const char * | str_prev, | ||
double | scale_pref, | ||
int | system, | ||
int | type | ||
) |
Definition at line 569 of file unit.c.
References BLI_snprintf(), bUnit_ReplaceString(), ch_is_op(), i, bUnitDef::name, NULL, SEP_CHR, str, TEMP_STR_SIZE, unit_default(), unit_find(), unit_get_system(), unit_replace(), UNIT_SYSTEM_TOT, and bUnitCollection::units.
Referenced by bUnit_ReplaceString().
void bUnit_ToUnitAltName | ( | char * | str, |
int | len_max, | ||
const char * | orig_str, | ||
int | system, | ||
int | type | ||
) |
Definition at line 683 of file unit.c.
References BLI_snprintf(), bUnitDef::name, bUnitDef::name_alt, bUnitDef::name_short, strlen(), unit_default(), unit_find_str(), unit_get_system(), and bUnitCollection::units.
Referenced by ui_convert_to_unit_alt_name().
static int ch_is_op | ( | char | op | ) | [static] |
Definition at line 463 of file unit.c.
Referenced by bUnit_ReplaceString().
static int unit_as_string | ( | char * | str, |
int | len_max, | ||
double | value, | ||
int | prec, | ||
bUnitCollection * | usys, | ||
bUnitDef * | unit, | ||
char | pad | ||
) | [static] |
Definition at line 325 of file unit.c.
References BLI_snprintf(), i, len(), bUnitDef::name_short, NULL, bUnitDef::scalar, unit_best_fit(), and unit_default().
Referenced by bUnit_AsString().
static bUnitDef* unit_best_fit | ( | double | value, |
bUnitCollection * | usys, | ||
bUnitDef * | unit_start, | ||
int | suppress | ||
) | [static] |
Definition at line 292 of file unit.c.
References B_UNIT_DEF_SUPPRESS, EPS, bUnitDef::flag, bUnitDef::name, bUnitDef::scalar, unit_default(), and bUnitCollection::units.
Referenced by bUnit_ClosestScalar(), unit_as_string(), and unit_dual_convert().
static bUnitDef* unit_default | ( | bUnitCollection * | usys | ) | [static] |
Definition at line 287 of file unit.c.
References bUnitCollection::base_unit, and bUnitCollection::units.
Referenced by bUnit_BaseScalar(), bUnit_ReplaceString(), bUnit_ToUnitAltName(), unit_as_string(), and unit_best_fit().
static void unit_dual_convert | ( | double | value, |
bUnitCollection * | usys, | ||
bUnitDef ** | unit_a, | ||
bUnitDef ** | unit_b, | ||
double * | value_a, | ||
double * | value_b | ||
) | [static] |
Definition at line 313 of file unit.c.
References NULL, bUnitDef::scalar, and unit_best_fit().
Referenced by bUnit_AsString().
static int unit_find | ( | const char * | str, |
bUnitDef * | unit | ||
) | [static] |
Definition at line 544 of file unit.c.
References bUnitDef::name, bUnitDef::name_alt, bUnitDef::name_plural, bUnitDef::name_short, and unit_find_str().
Referenced by bUnit_ReplaceString().
static const char* unit_find_str | ( | const char * | str, |
const char * | substr | ||
) | [static] |
Definition at line 430 of file unit.c.
References NULL, and strlen().
Referenced by bUnit_ToUnitAltName(), unit_find(), and unit_scale_str().
static bUnitCollection* unit_get_system | ( | int | system, |
int | type | ||
) | [static] |
Definition at line 281 of file unit.c.
References assert, B_UNIT_TYPE_TOT, and UNIT_SYSTEM_TOT.
Referenced by bUnit_AsString(), bUnit_BaseScalar(), bUnit_ClosestScalar(), bUnit_GetSystem(), bUnit_ReplaceString(), and bUnit_ToUnitAltName().
static int unit_replace | ( | char * | str, |
int | len_max, | ||
char * | str_tmp, | ||
double | scale_pref, | ||
bUnitDef * | unit | ||
) | [static] |
Definition at line 534 of file unit.c.
References bUnitDef::name, bUnitDef::name_alt, bUnitDef::name_plural, bUnitDef::name_short, and unit_scale_str().
Referenced by bUnit_ReplaceString().
static int unit_scale_str | ( | char * | str, |
int | len_max, | ||
char * | str_tmp, | ||
double | scale_pref, | ||
bUnitDef * | unit, | ||
const char * | replace_str | ||
) | [static] |
Definition at line 485 of file unit.c.
References BLI_snprintf(), len(), bUnitDef::scalar, SEP_STR, strlen(), TEMP_STR_SIZE, and unit_find_str().
Referenced by unit_replace().
struct bUnitCollection buDummyCollecton = {buDummyDef, 0, 0, sizeof(buDummyDef)} [static] |
Definition at line 107 of file unit.c.
Referenced by bUnit_AsString().
struct bUnitDef buDummyDef[] [static] |
struct bUnitCollection buImperialAclCollecton = {buImperialAclDef, 0, 0, sizeof(buImperialAclDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buImperialAclDef[] [static] |
struct bUnitCollection buImperialAreaCollecton = {buImperialAreaDef, 4, 0, sizeof(buImperialAreaDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buImperialAreaDef[] [static] |
{ {"square mile", "square miles", "sq mi", "sq m","Square Miles", UN_SC_MI*UN_SC_MI, 0.0, B_UNIT_DEF_NONE}, {"square furlong", "square furlongs", "sq fur",NULL, "Square Furlongs", UN_SC_FUR*UN_SC_FUR, 0.0,B_UNIT_DEF_SUPPRESS}, {"square chain", "square chains", "sq ch", NULL, "Square Chains", UN_SC_CH*UN_SC_CH, 0.0, B_UNIT_DEF_SUPPRESS}, {"square yard", "square yards", "sq yd", NULL, "Square Yards", UN_SC_YD*UN_SC_YD, 0.0, B_UNIT_DEF_NONE}, {"square foot", "square feet", "sq ft", NULL, "Square Feet", UN_SC_FT*UN_SC_FT, 0.0, B_UNIT_DEF_NONE}, {"square inch", "square inches", "sq in", NULL, "Square Inches", UN_SC_IN*UN_SC_IN, 0.0, B_UNIT_DEF_NONE}, {"square thou", "square thous", "sq mil",NULL, "Square Thous", UN_SC_MIL*UN_SC_MIL, 0.0, B_UNIT_DEF_NONE}, {NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} }
struct bUnitCollection buImperialLenCollecton = {buImperialLenDef, 4, 0, sizeof(buImperialLenDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buImperialLenDef[] [static] |
{ {"mile", "miles", "mi", "m", "Miles", UN_SC_MI, 0.0, B_UNIT_DEF_NONE}, {"furlong", "furlongs", "fur", NULL, "Furlongs",UN_SC_FUR, 0.0, B_UNIT_DEF_SUPPRESS}, {"chain", "chains", "ch", NULL, "Chains", UN_SC_CH, 0.0, B_UNIT_DEF_SUPPRESS}, {"yard", "yards", "yd", NULL, "Yards", UN_SC_YD, 0.0, B_UNIT_DEF_NONE}, {"foot", "feet", "'", "ft", "Feet", UN_SC_FT, 0.0, B_UNIT_DEF_NONE}, {"inch", "inches", "\"", "in", "Inches", UN_SC_IN, 0.0, B_UNIT_DEF_NONE}, {"thou", "thou", "thou", "mil", "Thou", UN_SC_MIL, 0.0, B_UNIT_DEF_NONE}, {NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} }
struct bUnitCollection buImperialMassCollecton = {buImperialMassDef, 3, 0, sizeof(buImperialMassDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buImperialMassDef[] [static] |
{ {"ton", "tonnes", "ton", "t", "Tonnes", UN_SC_ITON, 0.0, B_UNIT_DEF_NONE}, {"centum weight", "centum weights", "cwt", NULL, "Centum weights", UN_SC_CWT, 0.0, B_UNIT_DEF_NONE}, {"stone", "stones", "st", NULL, "Stones", UN_SC_ST, 0.0, B_UNIT_DEF_NONE}, {"pound", "pounds", "lb", NULL, "Pounds", UN_SC_LB, 0.0, B_UNIT_DEF_NONE}, {"ounce", "ounces", "oz", NULL, "Ounces", UN_SC_OZ, 0.0, B_UNIT_DEF_NONE}, {NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} }
struct bUnitCollection buImperialVelCollecton = {buImperialVelDef, 0, 0, sizeof(buImperialVelDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buImperialVelDef[] [static] |
{ {"foot per second", "feet per second", "ft/s", "fps", "Feet per second", UN_SC_FT, 0.0, B_UNIT_DEF_NONE}, {"mile per hour", "miles per hour", "mph", NULL, "Miles per hour", UN_SC_MI/3600.0f, 0.0,B_UNIT_DEF_SUPPRESS}, {NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} }
struct bUnitCollection buImperialVolCollecton = {buImperialVolDef, 4, 0, sizeof(buImperialVolDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buImperialVolDef[] [static] |
{ {"cubic mile", "cubic miles", "cu mi", "cu m","Cubic Miles", UN_SC_MI*UN_SC_MI*UN_SC_MI, 0.0, B_UNIT_DEF_NONE}, {"cubic furlong", "cubic furlongs", "cu fur",NULL, "Cubic Furlongs", UN_SC_FUR*UN_SC_FUR*UN_SC_FUR, 0.0,B_UNIT_DEF_SUPPRESS}, {"cubic chain", "cubic chains", "cu ch", NULL, "Cubic Chains", UN_SC_CH*UN_SC_CH*UN_SC_CH, 0.0, B_UNIT_DEF_SUPPRESS}, {"cubic yard", "cubic yards", "cu yd", NULL, "Cubic Yards", UN_SC_YD*UN_SC_YD*UN_SC_YD, 0.0, B_UNIT_DEF_NONE}, {"cubic foot", "cubic feet", "cu ft", NULL, "Cubic Feet", UN_SC_FT*UN_SC_FT*UN_SC_FT, 0.0, B_UNIT_DEF_NONE}, {"cubic inch", "cubic inches", "cu in", NULL, "Cubic Inches", UN_SC_IN*UN_SC_IN*UN_SC_IN, 0.0, B_UNIT_DEF_NONE}, {"cubic thou", "cubic thous", "cu mil",NULL, "Cubic Thous", UN_SC_MIL*UN_SC_MIL*UN_SC_MIL, 0.0, B_UNIT_DEF_NONE}, {NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} }
struct bUnitCollection buMetricAclCollecton = {buMetricAclDef, 0, 0, sizeof(buMetricAclDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buMetricAclDef[] [static] |
struct bUnitCollection buMetricAreaCollecton = {buMetricAreaDef, 3, 0, sizeof(buMetricAreaDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buMetricAreaDef[] [static] |
{ {"square kilometer", "square kilometers", "km²", "km2", "Square Kilometers", UN_SC_KM*UN_SC_KM, 0.0, B_UNIT_DEF_NONE}, {"square hectometer","square hectometers", "hm²", "hm2", "Square Hectometers", UN_SC_HM*UN_SC_HM, 0.0, B_UNIT_DEF_NONE}, {"square dekameter", "square dekameters", "dam²","dam2", "Square Dekameters", UN_SC_DAM*UN_SC_DAM, 0.0, B_UNIT_DEF_SUPPRESS}, {"square meter", "square meters", "m²", "m2", "Square Meters", UN_SC_M*UN_SC_M, 0.0, B_UNIT_DEF_NONE}, {"square decimetre", "square decimetres", "dm²", "dm2", "Square Decimetres", UN_SC_DM*UN_SC_DM, 0.0, B_UNIT_DEF_SUPPRESS}, {"square centimeter", "square centimeters", "cm²", "cm2", "Square Centimeters", UN_SC_CM*UN_SC_CM, 0.0, B_UNIT_DEF_NONE}, {"square millimeter", "square millimeters", "mm²", "mm2", "Square Millimeters", UN_SC_MM*UN_SC_MM, 0.0, B_UNIT_DEF_NONE}, {"square micrometer", "square micrometers", "µm²", "um2", "Square Micrometers", UN_SC_UM*UN_SC_UM, 0.0, B_UNIT_DEF_NONE}, {NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} }
struct bUnitCollection buMetricLenCollecton = {buMetricLenDef, 3, 0, sizeof(buMetricLenDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buMetricLenDef[] [static] |
{ {"kilometer", "kilometers", "km", NULL, "Kilometers", UN_SC_KM, 0.0, B_UNIT_DEF_NONE}, {"hectometer", "hectometers", "hm", NULL, "100 Meters", UN_SC_HM, 0.0, B_UNIT_DEF_SUPPRESS}, {"dekameter", "dekameters", "dam",NULL, "10 Meters", UN_SC_DAM, 0.0, B_UNIT_DEF_SUPPRESS}, {"meter", "meters", "m", NULL, "Meters", UN_SC_M, 0.0, B_UNIT_DEF_NONE}, {"decimetre", "decimetres", "dm", NULL, "10 Centimeters", UN_SC_DM, 0.0, B_UNIT_DEF_SUPPRESS}, {"centimeter", "centimeters", "cm", NULL, "Centimeters", UN_SC_CM, 0.0, B_UNIT_DEF_NONE}, {"millimeter", "millimeters", "mm", NULL, "Millimeters", UN_SC_MM, 0.0, B_UNIT_DEF_NONE}, {"micrometer", "micrometers", "µm", "um", "Micrometers", UN_SC_UM, 0.0, B_UNIT_DEF_NONE}, {NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} }
struct bUnitCollection buMetricMassCollecton = {buMetricMassDef, 2, 0, sizeof(buMetricMassDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buMetricMassDef[] [static] |
{ {"ton", "tonnes", "ton", "t", "1000 Kilograms", UN_SC_MTON, 0.0, B_UNIT_DEF_NONE}, {"quintal", "quintals", "ql", "q", "100 Kilograms", UN_SC_QL, 0.0, B_UNIT_DEF_NONE}, {"kilogram", "kilograms", "kg", NULL, "Kilograms", UN_SC_KG, 0.0, B_UNIT_DEF_NONE}, {"hectogram", "hectograms", "hg", NULL, "Hectograms", UN_SC_HG, 0.0, B_UNIT_DEF_NONE}, {"dekagram", "dekagrams", "dag",NULL, "10 Grams", UN_SC_DAG, 0.0, B_UNIT_DEF_SUPPRESS}, {"gram", "grams", "g", NULL, "Grams", UN_SC_G, 0.0, B_UNIT_DEF_NONE}, {NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} }
struct bUnitCollection buMetricVelCollecton = {buMetricVelDef, 0, 0, sizeof(buMetricVelDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buMetricVelDef[] [static] |
struct bUnitCollection buMetricVolCollecton = {buMetricVolDef, 3, 0, sizeof(buMetricVolDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buMetricVolDef[] [static] |
{ {"cubic kilometer", "cubic kilometers", "km³", "km3", "Cubic Kilometers", UN_SC_KM*UN_SC_KM*UN_SC_KM, 0.0, B_UNIT_DEF_NONE}, {"cubic hectometer","cubic hectometers", "hm³", "hm3", "Cubic Hectometers", UN_SC_HM*UN_SC_HM*UN_SC_HM, 0.0, B_UNIT_DEF_NONE}, {"cubic dekameter", "cubic dekameters", "dam³","dam3", "Cubic Dekameters", UN_SC_DAM*UN_SC_DAM*UN_SC_DAM, 0.0, B_UNIT_DEF_SUPPRESS}, {"cubic meter", "cubic meters", "m³", "m3", "Cubic Meters", UN_SC_M*UN_SC_M*UN_SC_M, 0.0, B_UNIT_DEF_NONE}, {"cubic decimetre", "cubic decimetres", "dm³", "dm3", "Cubic Decimetres", UN_SC_DM*UN_SC_DM*UN_SC_DM, 0.0, B_UNIT_DEF_SUPPRESS}, {"cubic centimeter", "cubic centimeters", "cm³", "cm3", "Cubic Centimeters", UN_SC_CM*UN_SC_CM*UN_SC_CM, 0.0, B_UNIT_DEF_NONE}, {"cubic millimeter", "cubic millimeters", "mm³", "mm3", "Cubic Millimeters", UN_SC_MM*UN_SC_MM*UN_SC_MM, 0.0, B_UNIT_DEF_NONE}, {"cubic micrometer", "cubic micrometers", "µm³", "um3", "Cubic Micrometers", UN_SC_UM*UN_SC_UM*UN_SC_UM, 0.0, B_UNIT_DEF_NONE}, {NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} }
struct bUnitCollection buNaturalRotCollection = {buNaturalRotDef, 0, 0, sizeof(buNaturalRotDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buNaturalRotDef[] [static] |
struct bUnitCollection buNaturalTimeCollecton = {buNaturalTimeDef, 3, 0, sizeof(buNaturalTimeDef)/sizeof(bUnitDef)} [static] |
struct bUnitDef buNaturalTimeDef[] [static] |
{ {"day", "days", "d", NULL, "Days", 90000.0, 0.0, B_UNIT_DEF_NONE}, {"hour", "hours", "hr", "h", "Hours", 3600.0, 0.0, B_UNIT_DEF_NONE}, {"minute", "minutes", "min", "m", "Minutes", 60.0, 0.0, B_UNIT_DEF_NONE}, {"second", "seconds", "sec", "s", "Seconds", 1.0, 0.0, B_UNIT_DEF_NONE}, {"millisecond", "milliseconds", "ms", NULL, "Milliseconds", 0.001, 0.0 , B_UNIT_DEF_NONE}, {"microsecond", "microseconds", "µs", "us", "Microseconds", 0.000001, 0.0, B_UNIT_DEF_NONE}, {NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} }
struct bUnitCollection* bUnitSystems[][9] [static] |
{ {NULL, NULL, NULL, NULL, NULL, &buNaturalRotCollection, &buNaturalTimeCollecton, NULL, NULL}, {NULL, &buMetricLenCollecton, &buMetricAreaCollecton, &buMetricVolCollecton, &buMetricMassCollecton, &buNaturalRotCollection, &buNaturalTimeCollecton, &buMetricVelCollecton, &buMetricAclCollecton}, {NULL, &buImperialLenCollecton, &buImperialAreaCollecton, &buImperialVolCollecton, &buImperialMassCollecton, &buNaturalRotCollection, &buNaturalTimeCollecton, &buImperialVelCollecton, &buImperialAclCollecton}, {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL} }