-
Expression: Slider to control the number of vertices along a path
I’m trying to design a universal line graph that’s driven by JSON files.
I’ve made a good working project from a tutorial by Bring your own Laptop. His tutorial is based on a line graph with 12 data points.
He creates a 12-point path and attaches nulls to each point, then an expression to position each null on his graph according to the data pulled from the JSON files
In my scenario, I want a graph to be flexible in case I have a data set that has more or fewer data points.
What I need is to add a slider where I can input the number of data points, which generates a corresponding number of vertices with nulls attached between the first and last vertice of a path.
Does anyone know a way to go about this or is it a madman’s dream?