Library "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.