-
Notifications
You must be signed in to change notification settings - Fork 7
/
Rectangle.cpp
142 lines (106 loc) · 2.35 KB
/
Rectangle.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
Passing variables / arrays between cython and cpp
Example from
http://docs.cython.org/src/userguide/wrapping_CPlusPlus.html
Adapted to include passing of multidimensional arrays
*/
#include "Rectangle.h"
using namespace shapes;
Rectangle::Rectangle(int X0, int Y0, int X1, int Y1)
{
x0 = X0;
y0 = Y0;
x1 = X1;
y1 = Y1;
}
Rectangle::~Rectangle()
{
}
int Rectangle::getLength()
{
return (x1 - x0);
}
int Rectangle::getHeight()
{
return (y1 - y0);
}
int Rectangle::getArea()
{
return (x1 - x0) * (y1 - y0);
}
void Rectangle::move(int dx, int dy)
{
x0 += dx;
y0 += dy;
x1 += dx;
y1 += dy;
}
/*
Inputting a 1D vectoror list and returning its sum
*/
double Rectangle::sum_vec(std::vector<double> sv)
{
double tot=0;
int svs = sv.size();
std::cout << "vector length " << svs << std::endl;
for (int ii=0; ii<svs; ii++)
{
tot = tot + sv.at(ii);
}
return tot;
}
/*
Inputting a 2D vector or list and returning its sum
*/
double Rectangle::sum_mat(std::vector< std::vector<double> > sv)
{
double tot=0;
int svrows = sv.size();
int svcols = sv[0].size();
std::cout << "vector length " << svrows << " , " << svcols << std::endl;
for (int ii=0; ii<svrows; ii++)
{
for (int jj=0; jj<svcols; jj++)
{
tot = tot + sv.at(ii).at(jj);
}
}
return tot;
}
/*
Passing a 2D vector by reference or list and returning its sum
*/
double Rectangle::sum_mat_ref(const std::vector< std::vector<double> > & sv)
{
double tot=0;
int svrows = sv.size();
int svcols = sv[0].size();
std::cout << "vector length " << svrows << " , " << svcols << std::endl;
for (int ii=0; ii<svrows; ii++)
{
for (int jj=0; jj<svcols; jj++)
{
tot = tot + sv.at(ii).at(jj);
}
}
return tot;
}
/*
Inputting a 2D vector, performing a simple operation and returning a new 2D vector
*/
std::vector< std::vector<double> > Rectangle::ret_mat(std::vector< std::vector<double> > sv)
{
int svrows = sv.size();
int svcols = sv[0].size();
std::vector< std::vector<double> > tot;
tot.resize(svrows, std::vector<double> (svcols, -1));
std::cout << "vector length " << svrows << " , " << svcols << std::endl;
for (int ii=0; ii<svrows; ii++)
{
for (int jj=0; jj<svcols; jj++)
{
tot.at(ii).at(jj) = (2*sv.at(ii).at(jj));
}
}
return tot;
}