A Python library for solving triangles (finding all sides and angles) using the Law of Sines and Law of Cosines. Current version is 1.2, released with no recent updates.
pip install trianglesolverNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Solve triangle given three sides (SSS). Returns sides a,b,c and angles A,B,C in radians.
Convert using `from trianglesolver import degree` or multiply by 180/π.
Ensure you provide exactly three known values. For example: `solve(a=3, b=4, C=degree(90))`.
Check if the input leads to ambiguous triangle; library may raise an exception or return unexpected results.
Always provide exactly three named arguments. Example: `solve(a=3, b=4, c=5)`
Verify your input forms a valid triangle. For angles, use the degree helper correctly.
Use `from trianglesolver import solve` instead of `from trianglesolver import trianglesolver`.
No dependency data recorded yet.