Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
9afe0335
Commit
9afe0335
authored
May 09, 1998
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make lines more visible to the user.
parent
14257ee2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
6 deletions
+18
-6
src/include/utils/geo_decls.h
src/include/utils/geo_decls.h
+18
-6
No files found.
src/include/utils/geo_decls.h
View file @
9afe0335
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: geo_decls.h,v 1.
19 1998/02/26 04:44:00 momjian
Exp $
* $Id: geo_decls.h,v 1.
20 1998/05/09 22:44:38 thomas
Exp $
*
*
* NOTE
* NOTE
* These routines do *not* use the float types from adt/.
* These routines do *not* use the float types from adt/.
...
@@ -175,6 +175,7 @@ extern bool lseg_lt(LSEG *l1, LSEG *l2);
...
@@ -175,6 +175,7 @@ extern bool lseg_lt(LSEG *l1, LSEG *l2);
extern
bool
lseg_le
(
LSEG
*
l1
,
LSEG
*
l2
);
extern
bool
lseg_le
(
LSEG
*
l1
,
LSEG
*
l2
);
extern
bool
lseg_gt
(
LSEG
*
l1
,
LSEG
*
l2
);
extern
bool
lseg_gt
(
LSEG
*
l1
,
LSEG
*
l2
);
extern
bool
lseg_ge
(
LSEG
*
l1
,
LSEG
*
l2
);
extern
bool
lseg_ge
(
LSEG
*
l1
,
LSEG
*
l2
);
extern
LSEG
*
lseg_construct
(
Point
*
pt1
,
Point
*
pt2
);
extern
double
*
lseg_length
(
LSEG
*
lseg
);
extern
double
*
lseg_length
(
LSEG
*
lseg
);
extern
double
*
lseg_distance
(
LSEG
*
l1
,
LSEG
*
l2
);
extern
double
*
lseg_distance
(
LSEG
*
l1
,
LSEG
*
l2
);
extern
Point
*
lseg_center
(
LSEG
*
lseg
);
extern
Point
*
lseg_center
(
LSEG
*
lseg
);
...
@@ -204,8 +205,22 @@ extern bool inter_sl(LSEG *lseg, LINE *line);
...
@@ -204,8 +205,22 @@ extern bool inter_sl(LSEG *lseg, LINE *line);
extern
bool
inter_sb
(
LSEG
*
lseg
,
BOX
*
box
);
extern
bool
inter_sb
(
LSEG
*
lseg
,
BOX
*
box
);
extern
bool
inter_lb
(
LINE
*
line
,
BOX
*
box
);
extern
bool
inter_lb
(
LINE
*
line
,
BOX
*
box
);
/* private routines */
/* private lseg routines */
extern
LSEG
*
lseg_construct
(
Point
*
pt1
,
Point
*
pt2
);
/* public line routines */
extern
LINE
*
line_in
(
char
*
str
);
extern
char
*
line_out
(
LINE
*
line
);
extern
Point
*
line_interpt
(
LINE
*
l1
,
LINE
*
l2
);
extern
double
*
line_distance
(
LINE
*
l1
,
LINE
*
l2
);
extern
LINE
*
line_construct_pp
(
Point
*
pt1
,
Point
*
pt2
);
extern
bool
line_intersect
(
LINE
*
l1
,
LINE
*
l2
);
extern
bool
line_parallel
(
LINE
*
l1
,
LINE
*
l2
);
extern
bool
line_perp
(
LINE
*
l1
,
LINE
*
l2
);
extern
bool
line_vertical
(
LINE
*
line
);
extern
bool
line_horizontal
(
LINE
*
line
);
extern
bool
line_eq
(
LINE
*
l1
,
LINE
*
l2
);
/* private line routines */
/* public box routines */
/* public box routines */
extern
BOX
*
box_in
(
char
*
str
);
extern
BOX
*
box_in
(
char
*
str
);
...
@@ -244,9 +259,6 @@ extern BOX *box_sub(BOX *box, Point *p);
...
@@ -244,9 +259,6 @@ extern BOX *box_sub(BOX *box, Point *p);
extern
BOX
*
box_mul
(
BOX
*
box
,
Point
*
p
);
extern
BOX
*
box_mul
(
BOX
*
box
,
Point
*
p
);
extern
BOX
*
box_div
(
BOX
*
box
,
Point
*
p
);
extern
BOX
*
box_div
(
BOX
*
box
,
Point
*
p
);
/* private line routines */
extern
double
*
line_distance
(
LINE
*
l1
,
LINE
*
l2
);
/* public path routines */
/* public path routines */
extern
PATH
*
path_in
(
char
*
str
);
extern
PATH
*
path_in
(
char
*
str
);
extern
char
*
path_out
(
PATH
*
path
);
extern
char
*
path_out
(
PATH
*
path
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment