Metadata-Version: 2.1
Name: areacalc
Version: 0.0.1
Summary: This is the simple area calculator of different 2d figures.
Author: k1zon
Project-URL: GitHub, https://github.com/K1Zon/AreaCalc_Lib
Keywords: areacalc
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# AreaCalc Library #

## What is this? ##
The module allows you to easily get areas of your 2D figures using only some of their parameters.

(Was made for job applying)

-----

### Using ### 

Using the library is very simple.

For example, you want to calculate area of triangle. All you need is length of each side:
    
    print(Area.triangle_sides(3, 4, 5))

will output:

    Triangle is rectangular!
    6.0

And so on. For all specifications that methods needs you can type:
    
    help(Area)

Or if you want exact function, for example
    
    polygon_dots()

you can check documentation with __doc__ method

    Area.polygon_dots().__doc__

-----

## Developer ##

github - https://github.com/K1Zon
