From dceac416d5a54345f026b627ccd8032bc75a9704 Mon Sep 17 00:00:00 2001 From: Jamie Gennis Date: Sat, 1 Sep 2001 14:46:24 +0000 Subject: [PATCH] added G_SQRT2 and other numeric constants to sync gobject2gtk with paranormal Original commit message from CVS: added G_SQRT2 and other numeric constants to sync gobject2gtk with paranormal --- gst/gobject2gtk.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gst/gobject2gtk.h b/gst/gobject2gtk.h index 48e2b6f0d9..00e631669d 100644 --- a/gst/gobject2gtk.h +++ b/gst/gobject2gtk.h @@ -6,7 +6,13 @@ #define G_MAXUINT UINT_MAX #define G_MAXULONG ULONG_MAX -#define G_PI 3.14159265358979323846E0 +#define G_E 2.7182818284590452354E0 +#define G_LN2 6.9314718055994530942E-1 +#define G_LN10 2.3025850929940456840E0 +#define G_PI 3.14159265358979323846E0 +#define G_PI_2 1.57079632679489661923E0 +#define G_PI_4 0.78539816339744830962E0 +#define G_SQRT2 1.4142135623730950488E0 typedef struct _GObject GObject; typedef struct _GObjectClass GObjectClass;