The CircleHelper module contains procedures used to preform math operations on a circle.
public static class CircleHelper
double ArcLength(double radius, double angle)Summary: Arcs the length.
Parameters:
radius
- The radius.
angle
- The angle.
double Area(double radius)Summary: Areas the specified radius.
Parameters:
radius
- The radius.
double ChordLength(double radius, double angle)Summary: Chords the length.
Parameters:
radius
- The radius.
angle
- The angle.
double Circumference(double radius)Summary: Circumferences the specified radius.
Parameters:
radius
- The radius.
The TriangleHelper module contains procedures used to preform math operations on a triangle.
public static class TriangleHelper
bool IsSumOfTheAnglesATriangle(double? angleA, double? angleB, double? angleC)Summary: Determines whether [is sum of the angles A triangle] [the specified angle A].
Parameters:
angleA
- The angle A.
angleB
- The angle B.
angleC
- The angle C.Returns:
true
if [is sum of the angles A triangle] [the specified angle A]; otherwise,false
.
bool IsSumOfTheAnglesATriangle(double angleA, double angleB, double angleC)Summary: Determines whether [is sum of the angles A triangle] [the specified angle A].
Parameters:
angleA
- The angle A.
angleB
- The angle B.
angleC
- The angle C.Returns:
true
if [is sum of the angles A triangle] [the specified angle A]; otherwise,false
.
double Pythagorean(double? sideA, double? sideB, double? sideC)Summary: Calculate the unspecified side (unspecified with NULL).
Parameters:
sideA
- The side A.
sideB
- The side B.
sideC
- The side C.