mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
* import with name not *, remove top level imports * Fix linter, remove numpy * Lint fixes * Comment worksheet generator temporarily
36 lines
1.7 KiB
Python
36 lines
1.7 KiB
Python
from ...__init__ import *
|
|
|
|
from .angle_btw_vectors import angle_btw_vectors
|
|
from .angle_regular_polygon import angle_regular_polygon
|
|
from .arc_length import arc_length
|
|
from .area_of_circle import area_of_circle
|
|
from .area_of_circle_given_center_and_point import area_of_circle_given_center_and_point
|
|
from .area_of_triangle import area_of_triangle
|
|
from .basic_trigonometry import basic_trigonometry
|
|
from .circumference import circumference
|
|
from .curved_surface_area_cylinder import curved_surface_area_cylinder
|
|
from .degree_to_rad import degree_to_rad
|
|
from .equation_of_line_from_two_points import equation_of_line_from_two_points
|
|
from .fourth_angle_of_quadrilateral import fourth_angle_of_quadrilateral
|
|
from .perimeter_of_polygons import perimeter_of_polygons
|
|
from .pythagorean_theorem import pythagorean_theorem
|
|
from .radian_to_deg import radian_to_deg
|
|
from .sector_area import sector_area
|
|
from .sum_of_polygon_angles import sum_of_polygon_angles
|
|
from .surface_area_cone import surface_area_cone
|
|
from .surface_area_cube import surface_area_cube
|
|
from .surface_area_cuboid import surface_area_cuboid
|
|
from .surface_area_cylinder import surface_area_cylinder
|
|
from .surface_area_pyramid import surface_area_pyramid
|
|
from .surface_area_sphere import surface_area_sphere
|
|
from .third_angle_of_triangle import third_angle_of_triangle
|
|
from .valid_triangle import valid_triangle
|
|
from .volume_cone import volume_cone
|
|
from .volume_cube import volume_cube
|
|
from .volume_cuboid import volume_cuboid
|
|
from .volume_cylinder import volume_cylinder
|
|
from .volume_frustum import volume_frustum
|
|
from .volume_hemisphere import volume_hemisphere
|
|
from .volume_pyramid import volume_pyramid
|
|
from .volume_sphere import volume_sphere
|