@@ -601,14 +601,31 @@ enddef;
601
601
%
602
602
603
603
def pictureToBranches (expr seedPicture) =
604
+ begingroup
605
+ save pathToMakeBranch, numberOfParts, i, minSize;
606
+ path pathToMakeBranch[];
607
+ numeric numberOfParts, minSize;
608
+ minSize := 20meristemResolution * ornamentScaleFactor;
604
609
for particularPath within seedPicture:
605
- if not filled particularPath:
606
- addBranch (pathpart particularPath, redpart(colorpart particularPath) = 1, (0, 0), 0, 1, false, false);
607
- if (greenpart(colorpart particularPath) = 1):
608
- addMeristem (pathpart particularPath, 1, branchNumber);
609
- fi;
610
- fi;
610
+ if not filled particularPath:
611
+ pathToMakeBranch0 := pathpart particularPath;
612
+ numberOfParts := ceiling(arclength(pathToMakeBranch0) / minSize);
613
+ if (numberOfParts = 0):
614
+ numberOfParts := 1;
615
+ fi;
616
+ for i := 1 step 1 until numberOfParts:
617
+ pathToMakeBranch1 := subpath (
618
+ (arctime ((i - 1) * arclength(pathToMakeBranch0)/numberOfParts) of pathToMakeBranch0),
619
+ (arctime (i * arclength(pathToMakeBranch0)/numberOfParts) of pathToMakeBranch0)
620
+ ) of pathToMakeBranch0;
621
+ addBranch (pathToMakeBranch1, redpart(colorpart particularPath) = 1, (0, 0), 0, 1, false, false);
622
+ if (greenpart(colorpart particularPath) = 1):
623
+ addMeristem (pathToMakeBranch1, 1, branchNumber);
624
+ fi;
625
+ endfor;
626
+ fi;
611
627
endfor;
628
+ endgroup
612
629
enddef;
613
630
614
631
vardef produceOrnamentImage(expr seedPicture, ornScaleFactor, bgColor, fgColor, symMode, branchIterations, leafIterations) =
0 commit comments