NTU-OOP-Tuts-2024-Cpp/T8Q2_2/Rectangle.cpp

14 lines
287 B
C++
Raw Normal View History

2024-10-30 07:36:34 +08:00
//
// Created by Marcus Vinícius de Carvalho
//
#include "Rectangle.h"
Rectangle::Rectangle(string name, const float width, const float height)
: Polygon(std::move(name), width, height) {
polytype = POLY_RECT;
}
float Rectangle::calculateArea() {
return width * height;
}