Skip to content

Commit 9886ef9

Browse files
committed
minor improvements in the ornament generation thing
1 parent 6765819 commit 9886ef9

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

lettrines/lettrines.mp

+1-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ forever:
6060
scantokens(readfrom("lettrine_" & lettrineLine & ".mp"));
6161
closefrom("lettrine_" & lettrineLine & ".mp");
6262
fill givenOutline0 withcolor (0,0,0);
63-
draw subpath (0,1) of givenOutline1 withcolor (1,1,0);
64-
draw subpath (1,2) of givenOutline1 withcolor (1,1,0);
63+
draw subpath (0,2) of givenOutline1 withcolor (1,1,0);
6564
draw subpath (2,4) of givenOutline1 withcolor (1,0,0);
6665
for i := 2 step 1 until totalLines:
6766
draw givenOutline[i] withcolor (1,1,0);

lettrines/ornament_engine.mp

+23-6
Original file line numberDiff line numberDiff line change
@@ -601,14 +601,31 @@ enddef;
601601
%
602602

603603
def pictureToBranches (expr seedPicture) =
604+
begingroup
605+
save pathToMakeBranch, numberOfParts, i, minSize;
606+
path pathToMakeBranch[];
607+
numeric numberOfParts, minSize;
608+
minSize := 20meristemResolution * ornamentScaleFactor;
604609
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;
611627
endfor;
628+
endgroup
612629
enddef;
613630

614631
vardef produceOrnamentImage(expr seedPicture, ornScaleFactor, bgColor, fgColor, symMode, branchIterations, leafIterations) =

0 commit comments

Comments
 (0)