Eneboo - Documentación para desarrolladores
|
#include "fmgr.h"
Ir al código fuente de este archivo.
Clases | |
struct | Point |
struct | LSEG |
struct | PATH |
struct | LINE |
struct | BOX |
struct | POLYGON |
struct | CIRCLE |
'defines' | |
#define | EPSILON 1.0E-06 |
#define | FPzero(A) (fabs(A) <= EPSILON) |
#define | FPeq(A, B) (fabs((A) - (B)) <= EPSILON) |
#define | FPne(A, B) (fabs((A) - (B)) > EPSILON) |
#define | FPlt(A, B) ((B) - (A) > EPSILON) |
#define | FPle(A, B) ((A) - (B) <= EPSILON) |
#define | FPgt(A, B) ((A) - (B) > EPSILON) |
#define | FPge(A, B) ((B) - (A) <= EPSILON) |
#define | HYPOT(A, B) sqrt((A) * (A) + (B) * (B)) |
#define | DatumGetPointP(X) ((Point *) DatumGetPointer(X)) |
#define | PointPGetDatum(X) PointerGetDatum(X) |
#define | PG_GETARG_POINT_P(n) DatumGetPointP(PG_GETARG_DATUM(n)) |
#define | PG_RETURN_POINT_P(x) return PointPGetDatum(x) |
#define | DatumGetLsegP(X) ((LSEG *) DatumGetPointer(X)) |
#define | LsegPGetDatum(X) PointerGetDatum(X) |
#define | PG_GETARG_LSEG_P(n) DatumGetLsegP(PG_GETARG_DATUM(n)) |
#define | PG_RETURN_LSEG_P(x) return LsegPGetDatum(x) |
#define | DatumGetPathP(X) ((PATH *) PG_DETOAST_DATUM(X)) |
#define | DatumGetPathPCopy(X) ((PATH *) PG_DETOAST_DATUM_COPY(X)) |
#define | PathPGetDatum(X) PointerGetDatum(X) |
#define | PG_GETARG_PATH_P(n) DatumGetPathP(PG_GETARG_DATUM(n)) |
#define | PG_GETARG_PATH_P_COPY(n) DatumGetPathPCopy(PG_GETARG_DATUM(n)) |
#define | PG_RETURN_PATH_P(x) return PathPGetDatum(x) |
#define | DatumGetLineP(X) ((LINE *) DatumGetPointer(X)) |
#define | LinePGetDatum(X) PointerGetDatum(X) |
#define | PG_GETARG_LINE_P(n) DatumGetLineP(PG_GETARG_DATUM(n)) |
#define | PG_RETURN_LINE_P(x) return LinePGetDatum(x) |
#define | DatumGetBoxP(X) ((BOX *) DatumGetPointer(X)) |
#define | BoxPGetDatum(X) PointerGetDatum(X) |
#define | PG_GETARG_BOX_P(n) DatumGetBoxP(PG_GETARG_DATUM(n)) |
#define | PG_RETURN_BOX_P(x) return BoxPGetDatum(x) |
#define | DatumGetPolygonP(X) ((POLYGON *) PG_DETOAST_DATUM(X)) |
#define | DatumGetPolygonPCopy(X) ((POLYGON *) PG_DETOAST_DATUM_COPY(X)) |
#define | PolygonPGetDatum(X) PointerGetDatum(X) |
#define | PG_GETARG_POLYGON_P(n) DatumGetPolygonP(PG_GETARG_DATUM(n)) |
#define | PG_GETARG_POLYGON_P_COPY(n) DatumGetPolygonPCopy(PG_GETARG_DATUM(n)) |
#define | PG_RETURN_POLYGON_P(x) return PolygonPGetDatum(x) |
#define | DatumGetCircleP(X) ((CIRCLE *) DatumGetPointer(X)) |
#define | CirclePGetDatum(X) PointerGetDatum(X) |
#define | PG_GETARG_CIRCLE_P(n) DatumGetCircleP(PG_GETARG_DATUM(n)) |
#define | PG_RETURN_CIRCLE_P(x) return CirclePGetDatum(x) |
Funciones | |
Datum | point_in (PG_FUNCTION_ARGS) |
Datum | point_out (PG_FUNCTION_ARGS) |
Datum | point_recv (PG_FUNCTION_ARGS) |
Datum | point_send (PG_FUNCTION_ARGS) |
Datum | construct_point (PG_FUNCTION_ARGS) |
Datum | point_left (PG_FUNCTION_ARGS) |
Datum | point_right (PG_FUNCTION_ARGS) |
Datum | point_above (PG_FUNCTION_ARGS) |
Datum | point_below (PG_FUNCTION_ARGS) |
Datum | point_vert (PG_FUNCTION_ARGS) |
Datum | point_horiz (PG_FUNCTION_ARGS) |
Datum | point_eq (PG_FUNCTION_ARGS) |
Datum | point_ne (PG_FUNCTION_ARGS) |
Datum | point_distance (PG_FUNCTION_ARGS) |
Datum | point_slope (PG_FUNCTION_ARGS) |
Datum | point_add (PG_FUNCTION_ARGS) |
Datum | point_sub (PG_FUNCTION_ARGS) |
Datum | point_mul (PG_FUNCTION_ARGS) |
Datum | point_div (PG_FUNCTION_ARGS) |
double | point_dt (Point *pt1, Point *pt2) |
double | point_sl (Point *pt1, Point *pt2) |
Datum | lseg_in (PG_FUNCTION_ARGS) |
Datum | lseg_out (PG_FUNCTION_ARGS) |
Datum | lseg_recv (PG_FUNCTION_ARGS) |
Datum | lseg_send (PG_FUNCTION_ARGS) |
Datum | lseg_intersect (PG_FUNCTION_ARGS) |
Datum | lseg_parallel (PG_FUNCTION_ARGS) |
Datum | lseg_perp (PG_FUNCTION_ARGS) |
Datum | lseg_vertical (PG_FUNCTION_ARGS) |
Datum | lseg_horizontal (PG_FUNCTION_ARGS) |
Datum | lseg_eq (PG_FUNCTION_ARGS) |
Datum | lseg_ne (PG_FUNCTION_ARGS) |
Datum | lseg_lt (PG_FUNCTION_ARGS) |
Datum | lseg_le (PG_FUNCTION_ARGS) |
Datum | lseg_gt (PG_FUNCTION_ARGS) |
Datum | lseg_ge (PG_FUNCTION_ARGS) |
Datum | lseg_construct (PG_FUNCTION_ARGS) |
Datum | lseg_length (PG_FUNCTION_ARGS) |
Datum | lseg_distance (PG_FUNCTION_ARGS) |
Datum | lseg_center (PG_FUNCTION_ARGS) |
Datum | lseg_interpt (PG_FUNCTION_ARGS) |
Datum | dist_pl (PG_FUNCTION_ARGS) |
Datum | dist_ps (PG_FUNCTION_ARGS) |
Datum | dist_ppath (PG_FUNCTION_ARGS) |
Datum | dist_pb (PG_FUNCTION_ARGS) |
Datum | dist_sl (PG_FUNCTION_ARGS) |
Datum | dist_sb (PG_FUNCTION_ARGS) |
Datum | dist_lb (PG_FUNCTION_ARGS) |
Datum | close_lseg (PG_FUNCTION_ARGS) |
Datum | close_pl (PG_FUNCTION_ARGS) |
Datum | close_ps (PG_FUNCTION_ARGS) |
Datum | close_pb (PG_FUNCTION_ARGS) |
Datum | close_sl (PG_FUNCTION_ARGS) |
Datum | close_sb (PG_FUNCTION_ARGS) |
Datum | close_ls (PG_FUNCTION_ARGS) |
Datum | close_lb (PG_FUNCTION_ARGS) |
Datum | on_pl (PG_FUNCTION_ARGS) |
Datum | on_ps (PG_FUNCTION_ARGS) |
Datum | on_pb (PG_FUNCTION_ARGS) |
Datum | on_ppath (PG_FUNCTION_ARGS) |
Datum | on_sl (PG_FUNCTION_ARGS) |
Datum | on_sb (PG_FUNCTION_ARGS) |
Datum | inter_sl (PG_FUNCTION_ARGS) |
Datum | inter_sb (PG_FUNCTION_ARGS) |
Datum | inter_lb (PG_FUNCTION_ARGS) |
Datum | line_in (PG_FUNCTION_ARGS) |
Datum | line_out (PG_FUNCTION_ARGS) |
Datum | line_recv (PG_FUNCTION_ARGS) |
Datum | line_send (PG_FUNCTION_ARGS) |
Datum | line_interpt (PG_FUNCTION_ARGS) |
Datum | line_distance (PG_FUNCTION_ARGS) |
Datum | line_construct_pp (PG_FUNCTION_ARGS) |
Datum | line_intersect (PG_FUNCTION_ARGS) |
Datum | line_parallel (PG_FUNCTION_ARGS) |
Datum | line_perp (PG_FUNCTION_ARGS) |
Datum | line_vertical (PG_FUNCTION_ARGS) |
Datum | line_horizontal (PG_FUNCTION_ARGS) |
Datum | line_eq (PG_FUNCTION_ARGS) |
Datum | box_in (PG_FUNCTION_ARGS) |
Datum | box_out (PG_FUNCTION_ARGS) |
Datum | box_recv (PG_FUNCTION_ARGS) |
Datum | box_send (PG_FUNCTION_ARGS) |
Datum | box_same (PG_FUNCTION_ARGS) |
Datum | box_overlap (PG_FUNCTION_ARGS) |
Datum | box_left (PG_FUNCTION_ARGS) |
Datum | box_overleft (PG_FUNCTION_ARGS) |
Datum | box_right (PG_FUNCTION_ARGS) |
Datum | box_overright (PG_FUNCTION_ARGS) |
Datum | box_below (PG_FUNCTION_ARGS) |
Datum | box_overbelow (PG_FUNCTION_ARGS) |
Datum | box_above (PG_FUNCTION_ARGS) |
Datum | box_overabove (PG_FUNCTION_ARGS) |
Datum | box_contained (PG_FUNCTION_ARGS) |
Datum | box_contain (PG_FUNCTION_ARGS) |
Datum | box_below_eq (PG_FUNCTION_ARGS) |
Datum | box_above_eq (PG_FUNCTION_ARGS) |
Datum | box_lt (PG_FUNCTION_ARGS) |
Datum | box_gt (PG_FUNCTION_ARGS) |
Datum | box_eq (PG_FUNCTION_ARGS) |
Datum | box_le (PG_FUNCTION_ARGS) |
Datum | box_ge (PG_FUNCTION_ARGS) |
Datum | box_area (PG_FUNCTION_ARGS) |
Datum | box_width (PG_FUNCTION_ARGS) |
Datum | box_height (PG_FUNCTION_ARGS) |
Datum | box_distance (PG_FUNCTION_ARGS) |
Datum | box_center (PG_FUNCTION_ARGS) |
Datum | box_intersect (PG_FUNCTION_ARGS) |
Datum | box_diagonal (PG_FUNCTION_ARGS) |
Datum | points_box (PG_FUNCTION_ARGS) |
Datum | box_add (PG_FUNCTION_ARGS) |
Datum | box_sub (PG_FUNCTION_ARGS) |
Datum | box_mul (PG_FUNCTION_ARGS) |
Datum | box_div (PG_FUNCTION_ARGS) |
Datum | path_area (PG_FUNCTION_ARGS) |
Datum | path_in (PG_FUNCTION_ARGS) |
Datum | path_out (PG_FUNCTION_ARGS) |
Datum | path_recv (PG_FUNCTION_ARGS) |
Datum | path_send (PG_FUNCTION_ARGS) |
Datum | path_n_lt (PG_FUNCTION_ARGS) |
Datum | path_n_gt (PG_FUNCTION_ARGS) |
Datum | path_n_eq (PG_FUNCTION_ARGS) |
Datum | path_n_le (PG_FUNCTION_ARGS) |
Datum | path_n_ge (PG_FUNCTION_ARGS) |
Datum | path_inter (PG_FUNCTION_ARGS) |
Datum | path_distance (PG_FUNCTION_ARGS) |
Datum | path_length (PG_FUNCTION_ARGS) |
Datum | path_isclosed (PG_FUNCTION_ARGS) |
Datum | path_isopen (PG_FUNCTION_ARGS) |
Datum | path_npoints (PG_FUNCTION_ARGS) |
Datum | path_close (PG_FUNCTION_ARGS) |
Datum | path_open (PG_FUNCTION_ARGS) |
Datum | path_add (PG_FUNCTION_ARGS) |
Datum | path_add_pt (PG_FUNCTION_ARGS) |
Datum | path_sub_pt (PG_FUNCTION_ARGS) |
Datum | path_mul_pt (PG_FUNCTION_ARGS) |
Datum | path_div_pt (PG_FUNCTION_ARGS) |
Datum | path_center (PG_FUNCTION_ARGS) |
Datum | path_poly (PG_FUNCTION_ARGS) |
Datum | poly_in (PG_FUNCTION_ARGS) |
Datum | poly_out (PG_FUNCTION_ARGS) |
Datum | poly_recv (PG_FUNCTION_ARGS) |
Datum | poly_send (PG_FUNCTION_ARGS) |
Datum | poly_left (PG_FUNCTION_ARGS) |
Datum | poly_overleft (PG_FUNCTION_ARGS) |
Datum | poly_right (PG_FUNCTION_ARGS) |
Datum | poly_overright (PG_FUNCTION_ARGS) |
Datum | poly_below (PG_FUNCTION_ARGS) |
Datum | poly_overbelow (PG_FUNCTION_ARGS) |
Datum | poly_above (PG_FUNCTION_ARGS) |
Datum | poly_overabove (PG_FUNCTION_ARGS) |
Datum | poly_same (PG_FUNCTION_ARGS) |
Datum | poly_overlap (PG_FUNCTION_ARGS) |
Datum | poly_contain (PG_FUNCTION_ARGS) |
Datum | poly_contained (PG_FUNCTION_ARGS) |
Datum | poly_contain_pt (PG_FUNCTION_ARGS) |
Datum | pt_contained_poly (PG_FUNCTION_ARGS) |
Datum | poly_distance (PG_FUNCTION_ARGS) |
Datum | poly_npoints (PG_FUNCTION_ARGS) |
Datum | poly_center (PG_FUNCTION_ARGS) |
Datum | poly_box (PG_FUNCTION_ARGS) |
Datum | poly_path (PG_FUNCTION_ARGS) |
Datum | box_poly (PG_FUNCTION_ARGS) |
Datum | circle_in (PG_FUNCTION_ARGS) |
Datum | circle_out (PG_FUNCTION_ARGS) |
Datum | circle_recv (PG_FUNCTION_ARGS) |
Datum | circle_send (PG_FUNCTION_ARGS) |
Datum | circle_same (PG_FUNCTION_ARGS) |
Datum | circle_overlap (PG_FUNCTION_ARGS) |
Datum | circle_overleft (PG_FUNCTION_ARGS) |
Datum | circle_left (PG_FUNCTION_ARGS) |
Datum | circle_right (PG_FUNCTION_ARGS) |
Datum | circle_overright (PG_FUNCTION_ARGS) |
Datum | circle_contained (PG_FUNCTION_ARGS) |
Datum | circle_contain (PG_FUNCTION_ARGS) |
Datum | circle_below (PG_FUNCTION_ARGS) |
Datum | circle_above (PG_FUNCTION_ARGS) |
Datum | circle_overbelow (PG_FUNCTION_ARGS) |
Datum | circle_overabove (PG_FUNCTION_ARGS) |
Datum | circle_eq (PG_FUNCTION_ARGS) |
Datum | circle_ne (PG_FUNCTION_ARGS) |
Datum | circle_lt (PG_FUNCTION_ARGS) |
Datum | circle_gt (PG_FUNCTION_ARGS) |
Datum | circle_le (PG_FUNCTION_ARGS) |
Datum | circle_ge (PG_FUNCTION_ARGS) |
Datum | circle_contain_pt (PG_FUNCTION_ARGS) |
Datum | pt_contained_circle (PG_FUNCTION_ARGS) |
Datum | circle_add_pt (PG_FUNCTION_ARGS) |
Datum | circle_sub_pt (PG_FUNCTION_ARGS) |
Datum | circle_mul_pt (PG_FUNCTION_ARGS) |
Datum | circle_div_pt (PG_FUNCTION_ARGS) |
Datum | circle_diameter (PG_FUNCTION_ARGS) |
Datum | circle_radius (PG_FUNCTION_ARGS) |
Datum | circle_distance (PG_FUNCTION_ARGS) |
Datum | dist_pc (PG_FUNCTION_ARGS) |
Datum | dist_cpoly (PG_FUNCTION_ARGS) |
Datum | circle_center (PG_FUNCTION_ARGS) |
Datum | cr_circle (PG_FUNCTION_ARGS) |
Datum | box_circle (PG_FUNCTION_ARGS) |
Datum | circle_box (PG_FUNCTION_ARGS) |
Datum | poly_circle (PG_FUNCTION_ARGS) |
Datum | circle_poly (PG_FUNCTION_ARGS) |
Datum | circle_area (PG_FUNCTION_ARGS) |
Datum | rt_box_union (PG_FUNCTION_ARGS) |
Datum | rt_box_inter (PG_FUNCTION_ARGS) |
Datum | rt_box_size (PG_FUNCTION_ARGS) |
Datum | rt_poly_size (PG_FUNCTION_ARGS) |
Datum | rt_poly_union (PG_FUNCTION_ARGS) |
Datum | rt_poly_inter (PG_FUNCTION_ARGS) |
Datum | gist_box_compress (PG_FUNCTION_ARGS) |
Datum | gist_box_decompress (PG_FUNCTION_ARGS) |
Datum | gist_box_union (PG_FUNCTION_ARGS) |
Datum | gist_box_picksplit (PG_FUNCTION_ARGS) |
Datum | gist_box_consistent (PG_FUNCTION_ARGS) |
Datum | gist_box_penalty (PG_FUNCTION_ARGS) |
Datum | gist_box_same (PG_FUNCTION_ARGS) |
Datum | gist_poly_compress (PG_FUNCTION_ARGS) |
Datum | gist_poly_consistent (PG_FUNCTION_ARGS) |
Datum | gist_circle_compress (PG_FUNCTION_ARGS) |
Datum | gist_circle_consistent (PG_FUNCTION_ARGS) |
Datum | areasel (PG_FUNCTION_ARGS) |
Datum | areajoinsel (PG_FUNCTION_ARGS) |
Datum | positionsel (PG_FUNCTION_ARGS) |
Datum | positionjoinsel (PG_FUNCTION_ARGS) |
Datum | contsel (PG_FUNCTION_ARGS) |
Datum | contjoinsel (PG_FUNCTION_ARGS) |
#define BoxPGetDatum | ( | X | ) | PointerGetDatum(X) |
#define CirclePGetDatum | ( | X | ) | PointerGetDatum(X) |
#define DatumGetBoxP | ( | X | ) | ((BOX *) DatumGetPointer(X)) |
#define DatumGetCircleP | ( | X | ) | ((CIRCLE *) DatumGetPointer(X)) |
#define DatumGetLineP | ( | X | ) | ((LINE *) DatumGetPointer(X)) |
#define DatumGetLsegP | ( | X | ) | ((LSEG *) DatumGetPointer(X)) |
#define DatumGetPathP | ( | X | ) | ((PATH *) PG_DETOAST_DATUM(X)) |
#define DatumGetPathPCopy | ( | X | ) | ((PATH *) PG_DETOAST_DATUM_COPY(X)) |
#define DatumGetPointP | ( | X | ) | ((Point *) DatumGetPointer(X)) |
#define DatumGetPolygonP | ( | X | ) | ((POLYGON *) PG_DETOAST_DATUM(X)) |
#define DatumGetPolygonPCopy | ( | X | ) | ((POLYGON *) PG_DETOAST_DATUM_COPY(X)) |
#define EPSILON 1.0E-06 |
#define FPeq | ( | A, | |
B | |||
) | (fabs((A) - (B)) <= EPSILON) |
#define FPge | ( | A, | |
B | |||
) | ((B) - (A) <= EPSILON) |
#define FPgt | ( | A, | |
B | |||
) | ((A) - (B) > EPSILON) |
#define FPle | ( | A, | |
B | |||
) | ((A) - (B) <= EPSILON) |
#define FPlt | ( | A, | |
B | |||
) | ((B) - (A) > EPSILON) |
#define FPne | ( | A, | |
B | |||
) | (fabs((A) - (B)) > EPSILON) |
#define FPzero | ( | A | ) | (fabs(A) <= EPSILON) |
#define HYPOT | ( | A, | |
B | |||
) | sqrt((A) * (A) + (B) * (B)) |
#define LinePGetDatum | ( | X | ) | PointerGetDatum(X) |
#define LsegPGetDatum | ( | X | ) | PointerGetDatum(X) |
#define PathPGetDatum | ( | X | ) | PointerGetDatum(X) |
#define PG_GETARG_BOX_P | ( | n | ) | DatumGetBoxP(PG_GETARG_DATUM(n)) |
#define PG_GETARG_CIRCLE_P | ( | n | ) | DatumGetCircleP(PG_GETARG_DATUM(n)) |
#define PG_GETARG_LINE_P | ( | n | ) | DatumGetLineP(PG_GETARG_DATUM(n)) |
#define PG_GETARG_LSEG_P | ( | n | ) | DatumGetLsegP(PG_GETARG_DATUM(n)) |
#define PG_GETARG_PATH_P | ( | n | ) | DatumGetPathP(PG_GETARG_DATUM(n)) |
#define PG_GETARG_PATH_P_COPY | ( | n | ) | DatumGetPathPCopy(PG_GETARG_DATUM(n)) |
#define PG_GETARG_POINT_P | ( | n | ) | DatumGetPointP(PG_GETARG_DATUM(n)) |
#define PG_GETARG_POLYGON_P | ( | n | ) | DatumGetPolygonP(PG_GETARG_DATUM(n)) |
#define PG_GETARG_POLYGON_P_COPY | ( | n | ) | DatumGetPolygonPCopy(PG_GETARG_DATUM(n)) |
#define PG_RETURN_BOX_P | ( | x | ) | return BoxPGetDatum(x) |
#define PG_RETURN_CIRCLE_P | ( | x | ) | return CirclePGetDatum(x) |
#define PG_RETURN_LINE_P | ( | x | ) | return LinePGetDatum(x) |
#define PG_RETURN_LSEG_P | ( | x | ) | return LsegPGetDatum(x) |
#define PG_RETURN_PATH_P | ( | x | ) | return PathPGetDatum(x) |
#define PG_RETURN_POINT_P | ( | x | ) | return PointPGetDatum(x) |
#define PG_RETURN_POLYGON_P | ( | x | ) | return PolygonPGetDatum(x) |
#define PointPGetDatum | ( | X | ) | PointerGetDatum(X) |
#define PolygonPGetDatum | ( | X | ) | PointerGetDatum(X) |
Datum areajoinsel | ( | PG_FUNCTION_ARGS | ) |
Datum areasel | ( | PG_FUNCTION_ARGS | ) |
Datum box_above | ( | PG_FUNCTION_ARGS | ) |
Datum box_above_eq | ( | PG_FUNCTION_ARGS | ) |
Datum box_add | ( | PG_FUNCTION_ARGS | ) |
Datum box_area | ( | PG_FUNCTION_ARGS | ) |
Datum box_below | ( | PG_FUNCTION_ARGS | ) |
Datum box_below_eq | ( | PG_FUNCTION_ARGS | ) |
Datum box_center | ( | PG_FUNCTION_ARGS | ) |
Datum box_circle | ( | PG_FUNCTION_ARGS | ) |
Datum box_contain | ( | PG_FUNCTION_ARGS | ) |
Datum box_contained | ( | PG_FUNCTION_ARGS | ) |
Datum box_diagonal | ( | PG_FUNCTION_ARGS | ) |
Datum box_distance | ( | PG_FUNCTION_ARGS | ) |
Datum box_div | ( | PG_FUNCTION_ARGS | ) |
Datum box_eq | ( | PG_FUNCTION_ARGS | ) |
Datum box_ge | ( | PG_FUNCTION_ARGS | ) |
Datum box_gt | ( | PG_FUNCTION_ARGS | ) |
Datum box_height | ( | PG_FUNCTION_ARGS | ) |
Datum box_in | ( | PG_FUNCTION_ARGS | ) |
Datum box_intersect | ( | PG_FUNCTION_ARGS | ) |
Datum box_le | ( | PG_FUNCTION_ARGS | ) |
Datum box_left | ( | PG_FUNCTION_ARGS | ) |
Datum box_lt | ( | PG_FUNCTION_ARGS | ) |
Datum box_mul | ( | PG_FUNCTION_ARGS | ) |
Datum box_out | ( | PG_FUNCTION_ARGS | ) |
Datum box_overabove | ( | PG_FUNCTION_ARGS | ) |
Datum box_overbelow | ( | PG_FUNCTION_ARGS | ) |
Datum box_overlap | ( | PG_FUNCTION_ARGS | ) |
Datum box_overleft | ( | PG_FUNCTION_ARGS | ) |
Datum box_overright | ( | PG_FUNCTION_ARGS | ) |
Datum box_poly | ( | PG_FUNCTION_ARGS | ) |
Datum box_recv | ( | PG_FUNCTION_ARGS | ) |
Datum box_right | ( | PG_FUNCTION_ARGS | ) |
Datum box_same | ( | PG_FUNCTION_ARGS | ) |
Datum box_send | ( | PG_FUNCTION_ARGS | ) |
Datum box_sub | ( | PG_FUNCTION_ARGS | ) |
Datum box_width | ( | PG_FUNCTION_ARGS | ) |
Datum circle_above | ( | PG_FUNCTION_ARGS | ) |
Datum circle_add_pt | ( | PG_FUNCTION_ARGS | ) |
Datum circle_area | ( | PG_FUNCTION_ARGS | ) |
Datum circle_below | ( | PG_FUNCTION_ARGS | ) |
Datum circle_box | ( | PG_FUNCTION_ARGS | ) |
Datum circle_center | ( | PG_FUNCTION_ARGS | ) |
Datum circle_contain | ( | PG_FUNCTION_ARGS | ) |
Datum circle_contain_pt | ( | PG_FUNCTION_ARGS | ) |
Datum circle_contained | ( | PG_FUNCTION_ARGS | ) |
Datum circle_diameter | ( | PG_FUNCTION_ARGS | ) |
Datum circle_distance | ( | PG_FUNCTION_ARGS | ) |
Datum circle_div_pt | ( | PG_FUNCTION_ARGS | ) |
Datum circle_eq | ( | PG_FUNCTION_ARGS | ) |
Datum circle_ge | ( | PG_FUNCTION_ARGS | ) |
Datum circle_gt | ( | PG_FUNCTION_ARGS | ) |
Datum circle_in | ( | PG_FUNCTION_ARGS | ) |
Datum circle_le | ( | PG_FUNCTION_ARGS | ) |
Datum circle_left | ( | PG_FUNCTION_ARGS | ) |
Datum circle_lt | ( | PG_FUNCTION_ARGS | ) |
Datum circle_mul_pt | ( | PG_FUNCTION_ARGS | ) |
Datum circle_ne | ( | PG_FUNCTION_ARGS | ) |
Datum circle_out | ( | PG_FUNCTION_ARGS | ) |
Datum circle_overabove | ( | PG_FUNCTION_ARGS | ) |
Datum circle_overbelow | ( | PG_FUNCTION_ARGS | ) |
Datum circle_overlap | ( | PG_FUNCTION_ARGS | ) |
Datum circle_overleft | ( | PG_FUNCTION_ARGS | ) |
Datum circle_overright | ( | PG_FUNCTION_ARGS | ) |
Datum circle_poly | ( | PG_FUNCTION_ARGS | ) |
Datum circle_radius | ( | PG_FUNCTION_ARGS | ) |
Datum circle_recv | ( | PG_FUNCTION_ARGS | ) |
Datum circle_right | ( | PG_FUNCTION_ARGS | ) |
Datum circle_same | ( | PG_FUNCTION_ARGS | ) |
Datum circle_send | ( | PG_FUNCTION_ARGS | ) |
Datum circle_sub_pt | ( | PG_FUNCTION_ARGS | ) |
Datum close_lb | ( | PG_FUNCTION_ARGS | ) |
Datum close_ls | ( | PG_FUNCTION_ARGS | ) |
Datum close_lseg | ( | PG_FUNCTION_ARGS | ) |
Datum close_pb | ( | PG_FUNCTION_ARGS | ) |
Datum close_pl | ( | PG_FUNCTION_ARGS | ) |
Datum close_ps | ( | PG_FUNCTION_ARGS | ) |
Datum close_sb | ( | PG_FUNCTION_ARGS | ) |
Datum close_sl | ( | PG_FUNCTION_ARGS | ) |
Datum construct_point | ( | PG_FUNCTION_ARGS | ) |
Datum contjoinsel | ( | PG_FUNCTION_ARGS | ) |
Datum contsel | ( | PG_FUNCTION_ARGS | ) |
Datum cr_circle | ( | PG_FUNCTION_ARGS | ) |
Datum dist_cpoly | ( | PG_FUNCTION_ARGS | ) |
Datum dist_lb | ( | PG_FUNCTION_ARGS | ) |
Datum dist_pb | ( | PG_FUNCTION_ARGS | ) |
Datum dist_pc | ( | PG_FUNCTION_ARGS | ) |
Datum dist_pl | ( | PG_FUNCTION_ARGS | ) |
Datum dist_ppath | ( | PG_FUNCTION_ARGS | ) |
Datum dist_ps | ( | PG_FUNCTION_ARGS | ) |
Datum dist_sb | ( | PG_FUNCTION_ARGS | ) |
Datum dist_sl | ( | PG_FUNCTION_ARGS | ) |
Datum gist_box_compress | ( | PG_FUNCTION_ARGS | ) |
Datum gist_box_consistent | ( | PG_FUNCTION_ARGS | ) |
Datum gist_box_decompress | ( | PG_FUNCTION_ARGS | ) |
Datum gist_box_penalty | ( | PG_FUNCTION_ARGS | ) |
Datum gist_box_picksplit | ( | PG_FUNCTION_ARGS | ) |
Datum gist_box_same | ( | PG_FUNCTION_ARGS | ) |
Datum gist_box_union | ( | PG_FUNCTION_ARGS | ) |
Datum gist_circle_compress | ( | PG_FUNCTION_ARGS | ) |
Datum gist_circle_consistent | ( | PG_FUNCTION_ARGS | ) |
Datum gist_poly_compress | ( | PG_FUNCTION_ARGS | ) |
Datum gist_poly_consistent | ( | PG_FUNCTION_ARGS | ) |
Datum inter_lb | ( | PG_FUNCTION_ARGS | ) |
Datum inter_sb | ( | PG_FUNCTION_ARGS | ) |
Datum inter_sl | ( | PG_FUNCTION_ARGS | ) |
Datum line_construct_pp | ( | PG_FUNCTION_ARGS | ) |
Datum line_distance | ( | PG_FUNCTION_ARGS | ) |
Datum line_eq | ( | PG_FUNCTION_ARGS | ) |
Datum line_horizontal | ( | PG_FUNCTION_ARGS | ) |
Datum line_in | ( | PG_FUNCTION_ARGS | ) |
Datum line_interpt | ( | PG_FUNCTION_ARGS | ) |
Datum line_intersect | ( | PG_FUNCTION_ARGS | ) |
Datum line_out | ( | PG_FUNCTION_ARGS | ) |
Datum line_parallel | ( | PG_FUNCTION_ARGS | ) |
Datum line_perp | ( | PG_FUNCTION_ARGS | ) |
Datum line_recv | ( | PG_FUNCTION_ARGS | ) |
Datum line_send | ( | PG_FUNCTION_ARGS | ) |
Datum line_vertical | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_center | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_construct | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_distance | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_eq | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_ge | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_gt | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_horizontal | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_in | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_interpt | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_intersect | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_le | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_length | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_lt | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_ne | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_out | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_parallel | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_perp | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_recv | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_send | ( | PG_FUNCTION_ARGS | ) |
Datum lseg_vertical | ( | PG_FUNCTION_ARGS | ) |
Datum on_pb | ( | PG_FUNCTION_ARGS | ) |
Datum on_pl | ( | PG_FUNCTION_ARGS | ) |
Datum on_ppath | ( | PG_FUNCTION_ARGS | ) |
Datum on_ps | ( | PG_FUNCTION_ARGS | ) |
Datum on_sb | ( | PG_FUNCTION_ARGS | ) |
Datum on_sl | ( | PG_FUNCTION_ARGS | ) |
Datum path_add | ( | PG_FUNCTION_ARGS | ) |
Datum path_add_pt | ( | PG_FUNCTION_ARGS | ) |
Datum path_area | ( | PG_FUNCTION_ARGS | ) |
Datum path_center | ( | PG_FUNCTION_ARGS | ) |
Datum path_close | ( | PG_FUNCTION_ARGS | ) |
Datum path_distance | ( | PG_FUNCTION_ARGS | ) |
Datum path_div_pt | ( | PG_FUNCTION_ARGS | ) |
Datum path_in | ( | PG_FUNCTION_ARGS | ) |
Datum path_inter | ( | PG_FUNCTION_ARGS | ) |
Datum path_isclosed | ( | PG_FUNCTION_ARGS | ) |
Datum path_isopen | ( | PG_FUNCTION_ARGS | ) |
Datum path_length | ( | PG_FUNCTION_ARGS | ) |
Datum path_mul_pt | ( | PG_FUNCTION_ARGS | ) |
Datum path_n_eq | ( | PG_FUNCTION_ARGS | ) |
Datum path_n_ge | ( | PG_FUNCTION_ARGS | ) |
Datum path_n_gt | ( | PG_FUNCTION_ARGS | ) |
Datum path_n_le | ( | PG_FUNCTION_ARGS | ) |
Datum path_n_lt | ( | PG_FUNCTION_ARGS | ) |
Datum path_npoints | ( | PG_FUNCTION_ARGS | ) |
Datum path_open | ( | PG_FUNCTION_ARGS | ) |
Datum path_out | ( | PG_FUNCTION_ARGS | ) |
Datum path_poly | ( | PG_FUNCTION_ARGS | ) |
Datum path_recv | ( | PG_FUNCTION_ARGS | ) |
Datum path_send | ( | PG_FUNCTION_ARGS | ) |
Datum path_sub_pt | ( | PG_FUNCTION_ARGS | ) |
Datum point_above | ( | PG_FUNCTION_ARGS | ) |
Datum point_add | ( | PG_FUNCTION_ARGS | ) |
Datum point_below | ( | PG_FUNCTION_ARGS | ) |
Datum point_distance | ( | PG_FUNCTION_ARGS | ) |
Datum point_div | ( | PG_FUNCTION_ARGS | ) |
Datum point_eq | ( | PG_FUNCTION_ARGS | ) |
Datum point_horiz | ( | PG_FUNCTION_ARGS | ) |
Datum point_in | ( | PG_FUNCTION_ARGS | ) |
Datum point_left | ( | PG_FUNCTION_ARGS | ) |
Datum point_mul | ( | PG_FUNCTION_ARGS | ) |
Datum point_ne | ( | PG_FUNCTION_ARGS | ) |
Datum point_out | ( | PG_FUNCTION_ARGS | ) |
Datum point_recv | ( | PG_FUNCTION_ARGS | ) |
Datum point_right | ( | PG_FUNCTION_ARGS | ) |
Datum point_send | ( | PG_FUNCTION_ARGS | ) |
Datum point_slope | ( | PG_FUNCTION_ARGS | ) |
Datum point_sub | ( | PG_FUNCTION_ARGS | ) |
Datum point_vert | ( | PG_FUNCTION_ARGS | ) |
Datum points_box | ( | PG_FUNCTION_ARGS | ) |
Datum poly_above | ( | PG_FUNCTION_ARGS | ) |
Datum poly_below | ( | PG_FUNCTION_ARGS | ) |
Datum poly_box | ( | PG_FUNCTION_ARGS | ) |
Datum poly_center | ( | PG_FUNCTION_ARGS | ) |
Datum poly_circle | ( | PG_FUNCTION_ARGS | ) |
Datum poly_contain | ( | PG_FUNCTION_ARGS | ) |
Datum poly_contain_pt | ( | PG_FUNCTION_ARGS | ) |
Datum poly_contained | ( | PG_FUNCTION_ARGS | ) |
Datum poly_distance | ( | PG_FUNCTION_ARGS | ) |
Datum poly_in | ( | PG_FUNCTION_ARGS | ) |
Datum poly_left | ( | PG_FUNCTION_ARGS | ) |
Datum poly_npoints | ( | PG_FUNCTION_ARGS | ) |
Datum poly_out | ( | PG_FUNCTION_ARGS | ) |
Datum poly_overabove | ( | PG_FUNCTION_ARGS | ) |
Datum poly_overbelow | ( | PG_FUNCTION_ARGS | ) |
Datum poly_overlap | ( | PG_FUNCTION_ARGS | ) |
Datum poly_overleft | ( | PG_FUNCTION_ARGS | ) |
Datum poly_overright | ( | PG_FUNCTION_ARGS | ) |
Datum poly_path | ( | PG_FUNCTION_ARGS | ) |
Datum poly_recv | ( | PG_FUNCTION_ARGS | ) |
Datum poly_right | ( | PG_FUNCTION_ARGS | ) |
Datum poly_same | ( | PG_FUNCTION_ARGS | ) |
Datum poly_send | ( | PG_FUNCTION_ARGS | ) |
Datum positionjoinsel | ( | PG_FUNCTION_ARGS | ) |
Datum positionsel | ( | PG_FUNCTION_ARGS | ) |
Datum pt_contained_circle | ( | PG_FUNCTION_ARGS | ) |
Datum pt_contained_poly | ( | PG_FUNCTION_ARGS | ) |
Datum rt_box_inter | ( | PG_FUNCTION_ARGS | ) |
Datum rt_box_size | ( | PG_FUNCTION_ARGS | ) |
Datum rt_box_union | ( | PG_FUNCTION_ARGS | ) |
Datum rt_poly_inter | ( | PG_FUNCTION_ARGS | ) |
Datum rt_poly_size | ( | PG_FUNCTION_ARGS | ) |
Datum rt_poly_union | ( | PG_FUNCTION_ARGS | ) |