Hey, can you help me with creating a Grasshopper setup (either using components or a C# script) that does the following:
- I want to input a list of curves.
- The script should calculate the areas of these curves.
- After calculating the areas, it should find combinations of 1, 2, or 3 areas that add up to a specific target area I provide.
- It should then output the curves whose combined areas match the target, and also show the remaining curves that didn’t match.
- Ideally, I’d like the solution to be dynamic so I can change the target area and see the results update."