aboutsummaryrefslogtreecommitdiff
path: root/MindBox.Lib/Triangle.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MindBox.Lib/Triangle.cs')
-rw-r--r--MindBox.Lib/Triangle.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/MindBox.Lib/Triangle.cs b/MindBox.Lib/Triangle.cs
index 54e8a85..58cdb91 100644
--- a/MindBox.Lib/Triangle.cs
+++ b/MindBox.Lib/Triangle.cs
@@ -2,6 +2,7 @@ namespace MindBox.Lib;
public class Triangle : FlatShape
{
+ // Может потребоваться хранить разные стороны в разных полях, но для нашей задачи это избыточно
private readonly double[] _sides;
public Triangle(double a, double b, double c)
@@ -16,6 +17,9 @@ public class Triangle : FlatShape
throw new ArgumentException($"Sides lengths are not valid: {a}, {b}, {c}");
}
}
+ /// <summary>
+ /// Вычисление площади реугольника по формуле Герона
+ /// </summary>
public override double GetArea()
{
if (_area != null)
@@ -31,14 +35,16 @@ public class Triangle : FlatShape
(semiPerimeter - _sides[2]));
return _area.Value;
}
- }
+ }
public bool IsRight()
{
var sorted = _sides.OrderByDescending(x => x);
+ // Самая длинная сторона: гипотенуза
double hypotenuse = sorted.First();
+ // Две другие - катеты
var catheti = sorted.Skip(1);
return hypotenuse * hypotenuse == catheti.Sum(x => x * x);
- }
+ }
}