Skip to content

Commit 93a2b7f

Browse files
committed
Add high and low to BoundRect
1 parent d2ede7d commit 93a2b7f

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

boundrect.cpp

+10-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/* boundrect.cpp - bounding rectangles */
44
/* */
55
/******************************************************/
6-
/* Copyright 2019 Pierre Abbat.
6+
/* Copyright 2019,2020 Pierre Abbat.
77
* This file is part of Wolkenbase.
88
*
99
* Wolkenbase is free software: you can redistribute it and/or modify
@@ -26,23 +26,23 @@
2626
BoundRect::BoundRect()
2727
{
2828
int i;
29-
for (i=0;i<4;i++)
29+
for (i=0;i<6;i++)
3030
bounds[i]=INFINITY;
3131
orientation=0;
3232
}
3333

3434
BoundRect::BoundRect(int ori)
3535
{
3636
int i;
37-
for (i=0;i<4;i++)
37+
for (i=0;i<6;i++)
3838
bounds[i]=INFINITY;
3939
orientation=ori;
4040
}
4141

4242
void BoundRect::clear()
4343
{
4444
int i;
45-
for (i=0;i<4;i++)
45+
for (i=0;i<6;i++)
4646
bounds[i]=INFINITY;
4747
}
4848

@@ -56,14 +56,18 @@ int BoundRect::getOrientation()
5656
return orientation;
5757
}
5858

59-
void BoundRect::include(xy obj)
59+
void BoundRect::include(xyz obj)
6060
{
6161
int i;
6262
double newbound;
6363
for (i=0;i<4;i++)
6464
{
65-
newbound=obj.dirbound(i*DEG90-orientation);
65+
newbound=xy(obj).dirbound(i*DEG90-orientation);
6666
if (newbound<bounds[i])
6767
bounds[i]=newbound;
6868
}
69+
if (obj.elev()<bounds[4])
70+
bounds[4]=obj.elev();
71+
if (-obj.elev()<bounds[5])
72+
bounds[5]=-obj.elev();
6973
}

boundrect.h

+12-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/* boundrect.h - bounding rectangles */
44
/* */
55
/******************************************************/
6-
/* Copyright 2019 Pierre Abbat.
6+
/* Copyright 2019,2020 Pierre Abbat.
77
* This file is part of Wolkenbase.
88
*
99
* Wolkenbase is free software: you can redistribute it and/or modify
@@ -29,15 +29,15 @@ class BoundRect
2929
{
3030
private:
3131
int orientation;
32-
std::array<double,4> bounds;
33-
// The four numbers are left, bottom, -right, and -top.
32+
std::array<double,6> bounds;
33+
// The six numbers are left, bottom, -right, -top, low, and -high.
3434
public:
3535
BoundRect();
3636
BoundRect(int ori);
3737
void clear();
3838
void setOrientation(int ori);
3939
int getOrientation();
40-
void include(xy obj);
40+
void include(xyz obj);
4141
double left()
4242
{
4343
return bounds[0];
@@ -54,5 +54,13 @@ class BoundRect
5454
{
5555
return -bounds[3];
5656
}
57+
double low()
58+
{
59+
return bounds[4];
60+
}
61+
double high()
62+
{
63+
return -bounds[5];
64+
}
5765
};
5866
#endif

0 commit comments

Comments
 (0)