n/a

Dependents:   Figury

Rectangle.cpp

Committer:
kch78
Date:
2016-03-22
Revision:
0:f3642f9dd5f6

File content as of revision 0:f3642f9dd5f6:

#include "Rectangle.h"
#include "mbed.h"
#include "Shape.h"
#include <string>

Rectangle::Rectangle(float width, float height)
{
    this->width = width;
    this->height = height;
}

float Rectangle::getArea()
{
    return width * height;   
}