Function Index

class Misc

Range()

Works like in python: Returns an array for a range of numbers

Overload 1

Parameters:

Returns: int[]: an array with the numbers in

Overload 2

Parameters:

Returns: int[]: an array with the numbers in

RangeList()

Works like in python: Returns a List for a range of numbers

Overload 1

Parameters:

Returns: List<int>: a List with the numbers in

Overload 2

Parameters:

Returns: List<int>: a List with the numbers in

class Misc.MorseCode

PlainText()

Gets Plaintext from Morse Code.

Parameters:

Returns: string

Parse()

Converts plaintext into Morse Code.

Parameters:

Returns: MorseCode: The encoded MorseCode

TryParse()

Attempts to convert plaintext into Morse Code, but will not throw an exception

Parameters:

Returns: bool: Whether or not the operation was successful.

class MathTools

IsPrime()

Checks if an integer, or list of integers are prime or not

Overload 1

Parameters:

Returns: bool

Overload 2

Parameters:

Returns: bool[]

Overload 3

Parameters:

Returns: List<bool>

CalculateArea()

Calculates the area of a 2D shape

Parameters:

Returns: float The area of the given shape

CalculateVolume()

Calculates the volume of a regular 3D shape (sphere or cube)

Parameters:

Returns: float The volume of the given shape

CalculateVolume()

Calculates the volume of a 3D shape

Parameters:

Returns: float The volume of the given shape

CompoundInterest()

Calculates Compound Interest

Parameters:

Returns: decimal The amount of money you have afterwards.

class MathTools.Convert

FahrenheitToCelsius()

Converts Fahrenheits to Celsius.

Parameters:

Returns: float The given temperature in Celsius

CelsiusToFahrenheit()

Converts Celsius to Fahrenheits.

Parameters:

Returns: float The given temperature in Fahrenheits

MiToKm()

Converts from Miles to Kilometers, or Miles Per Hour to Kilometers per hour.

Parameters:

Returns: double: The corresponding amount of Kilometers.

KmToMi()

Converts from Miles to Kilometers, or Miles Per Hour to Kilometers per hour.

Parameters:

Returns: double: The corresponding amount of Miles.

class MathTools.Averages

Mean()

Gets the mean of 2 numbers, or an array // list of numbers.

Overload 1

Parameters:

Returns:

Overload 2

Parameters:

Returns:

Overload 3

Parameters:

Returns:

class SciTools

class SciTools.Electricity

GetResistance()

Gets Resistance from Current and Voltage

Parameters:

Returns: float: Resistance

GetCurrent()

Gets Current from Resistance and Voltage

Parameters:

Returns: float: Current

GetVoltage()

Gets Voltage from Current and Resistance

Parameters:

Returns: float: Voltage