math_helper 0.0.2 math_helper: ^0.0.2 copied to clipboard
A Flutter package to create and calculate various geometric relationships on coordinate.
Provides standard geometry mathematical functions including circle and linear equations, still updating. It is very helpful while drawing lines and shapes on canvas.
Features #
- Provide linear equation.
- Provide circle equation.
- Calculate the relation among linear, circle equation and points.
Contents #
- [Usage] (#Usage)
Usage #
final line = MathHelper.getLineEquation(Offset(0, 0), Offset(5, 5));
final distance = MathHelper.getDistanceBetweenTwoPoint(Offset(0, 0), Offset(10, 0));