transform module

transform.area_circ(r_in)

Calculates the area of a circle with given radius.

Input

The radius of the circle (float, >=0).

Returns

The area of the circle (float).

transform.side_pentagon(area_in)

Calculates the side length of a pentagon given its radius.

Input

The area of the pentagon (float, >=0).

Returns

The side length of the pentagon (float).

transform.side_square(area_in)

Calculates the side length of a square given its radius.

Input

The area of the square (float, >=0).

Returns

The side length of the square (float).