Update Graphics Script with Local Data Filter
Is there a way to make the graphics script obey the local data filter? I'm trying to get the convex hull of a select number of points within the data table. However, the graph script calculates the convex hull of all the points in the table ignoring the local data filter. The script I'm using for the convex hull is this:tri = Triangulation( X( :MXC, :MZC ) );
Path( tri << Get Hull Path );Is there ...