How to turn matrix from Get Hull Point into clockwise polygon
Hi team,
Is there anyway to turn matrix from Get hull point into clockwise polygon. I got the problem is when I use Polygon(x,y) to draw polygon, where x and y are from Get Hull Points, the polygon is not continuous
Code below:
x_matrix = dt[rows, {FORCEDROPTIME_3 }];
y_matrix = dt[rows, {ACTUAL_MINCHASEFORCEF_3}];
t = Triangulation( x( x_matrix, y_matrix ) ); // from the current rows
ashape = A...