mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
30 lines
916 B
Python
30 lines
916 B
Python
from ...__init__ import *
|
|
|
|
from .angle_btw_vectors import *
|
|
from .angle_regular_polygon import *
|
|
from .arc_length import *
|
|
from .area_of_circle import *
|
|
from .area_of_triangle import *
|
|
from .basic_trigonometry import *
|
|
from .circumference import *
|
|
from .curved_surface_area_cylinder import *
|
|
from .degree_to_rad import *
|
|
from .fourth_angle_of_quadrilateral import *
|
|
from .perimeter_of_polygons import *
|
|
from .pythagorean_theorem import *
|
|
from .radian_to_deg import *
|
|
from .sector_area import *
|
|
from .sum_of_polygon_angles import *
|
|
from .surface_area_cone import *
|
|
from .surface_area_cube import *
|
|
from .surface_area_cuboid import *
|
|
from .surface_area_cylinder import *
|
|
from .surface_area_sphere import *
|
|
from .third_angle_of_triangle import *
|
|
from .valid_triangle import *
|
|
from .volume_cone import *
|
|
from .volume_cube import *
|
|
from .volume_cuboid import *
|
|
from .volume_cylinder import *
|
|
from .volume_sphere import *
|