AddVectors | Adds two vectors. | 
  ApplyMatrix | Applies the matrix to a point. | 
  CalculateDistance | Calculates the distance between two user specified points. | 
  ComposeMatrix | Composes the results of two matrices matrix1 and matrix2 into the resulting matrix. | 
  ConvertArrayToMatrix | Converts an array of doubles to a Matrix object. | 
  ConvertArrayToPoint | Converts an array of doubles to a Point object. | 
  ConvertArrayToPoints | Converts an array of doubles to a collection of points. | 
  ConvertArrayToVector | Converts an array of doubles to a Vector object. | 
  ConvertMatrixToArray | Converts a Matrix object to an array of doubles. | 
  ConvertPointsToArray | Converts a Points Collection object to an array of doubles. | 
  ConvertPointToArray | Converts a Point object to an array of doubles. | 
  ConvertVectorToArray | Converts a Vector object to an array of doubles. | 
  CreateColor | Creates a new color. | 
  CreateIdentityMatrix | Returns an identity matrix. | 
  CreateMirrorMatrix | Returns the resulting matrix  object with a reflection along the x, y, or z. | 
  CreatePoint | Creates a new Point object. | 
  CreatePoints | Creates a new, empty Points Collection object. | 
  CreateRotationMatrix | Returns a matrix equivalent to a rotation of angle radians about an axis specified by two points. | 
  CreateScaleMatrix | Returns the resulting matrix  object scaled about the  x, y, or z axes. | 
  CreateTranslationMatrix | Returns the resulting matrix  object with a translation of  x, y, and z along the axes. | 
  CreateVector | Returns a Vector object based on (X2-X1), Y2-Y1), (Z2-Z1). X1,Y1,Z1 default to 0,0,0. | 
  DistanceBetweenVectors | Calculates the distance between two vectors. | 
  InvertMatrix | Finds the inverse of the matrix. | 
  SubtractVectors | Subtracts two vectors (Vector1 - Vector2). | 
  VectorCrossProduct | Calculates the cross product of two vectors (Vector1 X Vector2). | 
  VectorDotProduct | Calculates the dot product of two vectors. | 
  VectorLength | Calculates the length of a vector. | 
  VectorScalarMultiply | Multiplies a vector with a scalar value. | 
  VectorUnitize | Makes a vector into a Unit vector. |