Skip to content

Latest commit

 

History

History
80 lines (67 loc) · 1.71 KB

Atc.Math.Trigonometry.md

File metadata and controls

80 lines (67 loc) · 1.71 KB

Atc.Math.Trigonometry


TriangleData

Triangle Data

public class TriangleData

Fields

A

A

Summary: Angle A - known as big 'A'

B

B

Summary: Angle B - known as big 'B'

C

C

Summary: Angle C - known as big 'C'

a

a

Summary: Side A - known as little 'a'

b

b

Summary: Side B - known as little 'b'

c

c

Summary: Side C - known as little 'c'

Methods

ToString

string ToString()

TriangleHelper

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

public static class TriangleHelper

Static Methods

SinesAndCosines

TriangleData SinesAndCosines(double? angleA, double? angleB, double? angleC, double? sideA, double? sideB, double? sideC)

Summary: Calculate sines and cosines.

Parameters:
     angleA  -  The angle A.
     angleB  -  The angle B.
     angleC  -  The angle C.
     sideA  -  The side A.
     sideB  -  The side B.
     sideC  -  The side C.


Generated by MarkdownCodeDoc version 1.2