ColorArrayLibrary   "ColorArray" 
Simple color array gradient tool.
 makeGradient(size, _col1, _col2, _col3, _col4, _col5)  Color Gradient Array from 5 colors.
  Parameters:
     size : : default 10
     _col1 : : default #ff0000
     _col2 : : default #ffff00
     _col3 : : default #00ff00
     _col4 : : default #00ffff
     _col5 : : default #0000ff
  Returns: array of colors to specified size.
Generate
FunctionGenerateRandomPointsInShapeLibrary   "FunctionGenerateRandomPointsInShape" 
Generate random vector points in geometric shape (parallelogram, triangle)
 random_parallelogram(vector_a, vector_b)  Generate random vector point in a parallelogram shape.
  Parameters:
     vector_a : float array, vector of (x, y) shape.
     vector_b : float array, vector of (x, y) shape.
  Returns: float array, vector of (x, y) shape.
 random_triangle(vector_a, vector_b)  Generate random vector point in a triangle shape.
  Parameters:
     vector_a : float array, vector of (x, y) shape.
     vector_b : float array, vector of (x, y) shape.
  Returns: float array, vector of (x, y) shape.

