Hi,
I want to bake Hatch pattern from c# script with button/toggle.
How can i do it?
below is the code!
List < Hatch > hts = new List<Hatch>();
foreach(Curve c in x)
{
Hatch[] ht = Hatch.Create(c, 3, Math.PI / 3, 0.01, 0.01);
hts.AddRange(ht);
}
A = hts;