Added kwargs to generator module and readme

This commit is contained in:
lukew3
2021-02-16 11:02:45 -05:00
parent ba6ffc4e6e
commit 9efffce9f5
116 changed files with 359 additions and 251 deletions

View File

@@ -16,4 +16,5 @@ def surfaceAreaCone(maxRadius=20, maxHeight=50, unit='m'):
surface_area_cone = Generator(
"Surface Area of cone", 38,
"Surface area of cone with height = a units and radius = b units is",
"c units^2", surfaceAreaCone)
"c units^2", surfaceAreaCone,
["maxRadius=20", "maxHeight=50", "unit='m'"])