Skip to content

Latest commit

 

History

History
99 lines (87 loc) · 3.24 KB

Atc.Math.Geometry.md

File metadata and controls

99 lines (87 loc) · 3.24 KB

Atc.Math.Geometry


CircleHelper

The CircleHelper module contains procedures used to preform math operations on a circle.

public static class CircleHelper

Static Methods

ArcLength

double ArcLength(double radius, double angle)

Summary: Arcs the length.

Parameters:
     radius  -  The radius.
     angle  -  The angle.

Area

double Area(double radius)

Summary: Areas the specified radius.

Parameters:
     radius  -  The radius.

ChordLength

double ChordLength(double radius, double angle)

Summary: Chords the length.

Parameters:
     radius  -  The radius.
     angle  -  The angle.

Circumference

double Circumference(double radius)

Summary: Circumferences the specified radius.

Parameters:
     radius  -  The radius.


TriangleHelper

The TriangleHelper module contains procedures used to preform math operations on a triangle.

public static class TriangleHelper

Static Methods

IsSumOfTheAnglesATriangle

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.

IsSumOfTheAnglesATriangle

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.

Pythagorean

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.


Generated by MarkdownCodeDoc version 1.2