pike.git
/
src
/
modules
/
Image
/
orient.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/Image/orient.c:1:
-
/* $Id: orient.c,v 1.
19
2001
/
07
/
19
21
:
11
:
12
nilsson Exp $ */
+
/* $Id: orient.c,v 1.
20
2002
/
05
/
11
00
:
27
:
03
nilsson Exp $ */
/* **! module Image **! note
-
**! $Id: orient.c,v 1.
19
2001
/
07
/
19
21
:
11
:
12
nilsson Exp $
+
**! $Id: orient.c,v 1.
20
2002
/
05
/
11
00
:
27
:
03
nilsson Exp $
**! class Image */ #include "global.h" #include <math.h> #include <ctype.h> #include "stralloc.h" #include "global.h"
pike.git/src/modules/Image/orient.c:23:
#include "array.h" #include "pike_error.h" #include "image.h" #include <builtin_functions.h> /* This must be included last! */ #include "module_magic.h"
+
#define sp Pike_sp
+
extern struct program *image_program; #ifdef THIS #undef THIS /* Needed for NT */ #endif #define THIS ((struct image *)(Pike_fp->current_storage)) #define THISOBJ (Pike_fp->current_object) #define testrange(x) MAXIMUM(MINIMUM((x),255),0) static const double c0=0.70710678118654752440;
pike.git/src/modules/Image/orient.c:282:
struct image *img[5]; if (!THIS->img) { Pike_error("Called Image.Image object is not initialized\n");; return; } pop_n_elems(args); _image_orient(THIS,o,img); pop_n_elems(1); f_aggregate(4); }
-
+