My last question was closed after 2 minutes. I am simply asking for help with the member functions. I should have member functions checking the following:
- whether the square is external to another;
- whether the square contains another square;
- whether the square is contained into another square;
- whether the square is tangent externally to another square (that is, whether their borders are in contact but, except those border points, they are external to each other);
- whether the square is tangent internally to another square (that is, they have points on the borders in common but, except those border points, one square is contained into the other one);
- whether the border of the square intersects the border of another square.
my private members are: double x,y;
Should i have the public member functions then, using both x and y to compute the perimeter and area?
This is what i have so far: the header file
#include <iostream>
#include <cmath>
class Square
{
int x, y;
int size;
public:
Square(int x, int y, int size) : x(x), y(y), size(size) { }
~Square() {};
bool isExternal(const Square& rhs);
bool contains(const Square& otherSquare);
bool iscontained(const Square& otherSquare);
bool borderintersect (const Square& otherSquare);
bool bordertangent (const Square& otherSquare);
}
The implementation
#include "Square.h"
bool Square::isExternal(const Square& rhs) const {
return (((x < rhs.x) || ((x + size) > (rhs.x + rhs.size)) && ((y < rhs.y) || ((y + size) > (rhs.y + rhs.size))
};
bool Square::contains(const Square& otherSquare)const {
};
bool Square::iscontained(const Square& otherSquare)const {
};
bool borderintersect(const Square& othersquare)
{
// If this square's bottom is greater than the other square's top
if ((this->y - (this->size / 2)) > (othersquare->y + (othersquare->size / 2)))
{
return (false);
}
// the reverse
if ((this->y + (this->size / 2)) < (othersquare->y - (othersquare->size / 2)))
{
return (false);
}
// If this square's left is greater than the other square's right
if ((this->x - (this->size / 2)) > (othersquare->x + (othersquare->size / 2)))
{
return (false);
}
if ((this->x + (this->size / 2)) < (othersquare->x - (othersquare->size / 2)))
{
return (false);
}
return (true);
bool Square::bordertangent (const Square& otherSquare)const {
};
The test program
#include "Square.h"
#include <iostream>
using namespace std;
int main() {
Square sq1(0, 0, 10);
Square sq2(1, 1, 10);
if(sq1.isExternal(sq2)) {
cout<<"Square 1 is external to square 2"<<endl;
}
if(sq1.contains(sq2){
cout<<"Square 1 contains square 2"<<endl;
return 0;
}
Should i include this in the header file in order to get both the x and y of the coordinate and the size?
double getX( ) const { return x; }
double getY( ) const { return y; }
double getSize( ) const { return size; }
xandysignify, exactly ? – Paul R Dec 4 '12 at 14:32perimeter()andarea()). They aren't among, nor required by, your listed requirements. And if you have them, I see no reason for them to be public. Does that answer your question? – Beta Dec 4 '12 at 14:32