Metadata-Version: 2.4
Name: linear_regression_amina_fezazi_V1
Version: 0.1.1
Summary: Simple Linear Regression from scratch
License: MIT
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.text
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Rocket Project

A simple Python project that models rockets and their behavior.  
It includes different types of rockets such as:
- **Rocket** â€” the base class representing a rocket in 2D space  
- **Shuttle** â€” a reusable rocket with a number of completed flights  
- **CircleRocket** â€” a rocket modeled as a circle with a given radius  

##  Features

- Move rockets in a 2D coordinate system
- Calculate distances between rockets
- Compute area and circumference for circular rockets
- Demonstrate inheritance and method overriding in Python

##  Classes Overview

### `Rocket`
Represents a basic rocket with coordinates `(x, y)`.

### `Shuttle`
Inherits from `Rocket` and adds a `flights_completed` attribute.

### `CircleRocket`
Inherits from `Rocket` and adds:
- `r` â†’ the radius of the rocket
- `get_area()` â†’ returns Ï€ * rÂ²  
- `get_circumference()` â†’ returns 2 * Ï€ * r

## ðŸ§© Installation

Make sure you have Python installed.  
You can clone this repository and run the examples in Jupyter Notebook or any IDE.

```bash
git clone https://github.com/Amina212004/rocket.git
cd rocket-project
