(path:str)
| 32 | return rootPath |
| 33 | |
| 34 | def getAbsolutePath(path:str): |
| 35 | rootPath = getRootPath() |
| 36 | absolutePath = rootPath+"/"+path |
| 37 | return absolutePath |
| 38 | |
| 39 | def equalsFloat(a, b, precision=0.000001): |
| 40 | if abs(a - b) <= precision: |
nothing calls this directly
no test coverage detected