█ V2 UPDATE
█ ADDED
• min_x(points): Returns the minimum x-coordinate from an array of Point objects.
• max_y(points): Returns the maximum y-coordinate from an array of Point objects.
• debug_label(x, display_text, col, txt_col, style, size): Creates a debug label at a Point.
• regular_polygon(center, radius, sides, start_angle): Generates points for a regular polygon.
• point_in_circle(circle, point): Checks if a point is inside a circle.
• scaled_circle(point1, point2, steps): Creates points for a rescaled circle/oval based on two reference points.
• Polygon: Structure with points, line_color, and fill_color fields.
• Circle: Structure with center, radius, line_color, and fill_color fields.
█ UPDATED
• sqrt(value): Square root function.
• sqr(x): Square function.
• cos(v), sin(v), tan(v): Trigonometric functions.
• acos(v), asin(v), atan(v): Inverse trigonometric functions.
• atan2(dy, dx): atan2 function.
• phi_tol(a, b, tolerance): Checks if a ratio is within a tolerance of the golden ratio.
• frac(x): Fractional part of a number.
• safeindex(x, limit) / safecheck(x, limit): Limits an integer to the chart range.
• interpolate(a, b, t): Interpolates between two points.
• gcd(_numerator, _denominator): Greatest common divisor.
• lcm(a, b): Least common multiple.
• set_x(self, value), set_y(self, value): Set x/y values of a Point.
• get_x(self), get_y(self): Get x/y values of a Point.
• vmin(self), vmax(self): Minimum/Maximum element of a point.
• add(p1, p2), sub(p1, p2): Point addition/subtraction.
• mul(p, scalar), div(p, scalar): Point multiplication/division by scalar.
• rotate(p, angle): Rotates a point.
• length(p), length_squared(p): Length/Squared length of a point as a vector.
• normalize(p): Normalizes a point to a unit vector.
• dot(p1, p2), cross(p1, p2): Dot/Cross product of two points.
• distance(p1, p2): Distance between two points.
• angle(p1, p2): Angle between two points.
• angle_between(p, pivot, other): Angle between two points relative to a pivot.
• translate(p, from_origin, to_origin): Translates a point.
• midpoint(p1, p2): Midpoint of two points.
• rotate_around(p, angle, pivot): Rotates a point around a pivot.
• multiply(_a, _b), divide(_a, _b): Element-wise multiplication/division of points.
• negate(_a): Negates a point.
• perp(_a): Perpendicular vector of a point.
• vfloor(_a), fractional(_a), vsin(_a), vabs(_a), vmod(_a, _b), vsign(_a), vround(_a): Vectorized math functions.
• normalize_y(p, height): Normalizes the y-value of a point.
• centroid(points): Calculates the centroid of multiple points.
• random_point(_height, _width, _origin, _centered): Generates a random point.
• random_point_array(_origin, _height, _width, _centered, _count): Generates an array of random points.
• sort_points(points, by_x): Sorts points by x or y coordinate.
• equals(_a, _b): Compares two points for equality.
• max(origin, _a, _b), min(origin, _a, _b): Maximum/Minimum of two points relative to an origin.
• avg_x(points), avg_y(points): Average x/y of point array.
• range_x(points), range_y(points): Range of x/y values in point array.
• max_x(points), min_y(points): min/max of x/y values in point array.
• scale(_a, _scalar): Scales a point.
• rescale(_a, _length): Rescales a point to a new magnitude.
• rotate_rad(_a, _radians), rotate_degree(_a, _degree): Rotates a point by radians/degrees.
• vceil(_a, _digits): Ceils a point's components.
• vpow(_a, _exponent): Raises point components to a power.
• perpendicular_distance(_a, _b, _c): Perpendicular distance from point to line.
• project(_a, _axis), projectN(_a, _axis): Projects a point.
• reflect(_a, _axis), reflectN(_a, _axis): Reflects a point.
• angle_rad(_a): Angle of a point in radians.
• angle_unsigned(_a, _b), angle_signed(_a, _b), angle_360(_a, _b): Various angle calculations between points.
• clamp(_a, _vmin, _vmax): Clamps a point.
• lerp(_a, _b, _rate_of_move): Linearly interpolates between points.
• slope(p1, p2): Slope of a line.
• gety(self, x), getx(self, y): Gets y/x coordinate on a line.
• intersection(self, other): Intersection point of two lines.
• calculate_arc_point(self, p2, p3): Calculates a point on an arc.
• approximate_center(point1, point2, point3): Approximates the center of a spiral.
• createEdge(center, radius, angle): Gets coordinates on a circle.
• getGrowthFactor(p1, p2, p3): Gets spiral growth factor.
• to_chart_point(point): Converts a Point to a chart.point.
• plotline(p1, p2, col, width, style): Draws a line.
• to_chart_points(points): Converts an array of Point to chart.point.
• drawlines(points, col, width, style, closed): Draws lines between points.
• polygon_area(points): Calculates polygon area.
• polygon_perimeter(points): Calculates polygon perimeter.
• is_point_in_polygon(point, _polygon): Checks if a point is in a polygon.
• perimeter(points): Calculates convex hull perimeter.
• Point(x, y, a, v): Point creation function.
• Point: Structure for points/vectors with x, y, a (angle), and v (value) fields.
• Line: Structure with point, slope, and line_color.