Type Alias ThreeQuarterStitch
ThreeQuarterStitch: ZodObject<
{
angle: ZodEnum<{ "bl-tr": "bl-tr"; "tl-br": "tl-br" }>;
colorId: $ZodBranded<ZodNumber, "ColorId", "out">;
kind: ZodLiteral<"three-quarter">;
placement: ZodEnum<
{
"bottom-left": "bottom-left";
"bottom-right": "bottom-right";
"top-left": "top-left";
"top-right": "top-right";
},
>;
x: $ZodBranded<ZodNumber, "CellCoordinate", "out">;
y: $ZodBranded<ZodNumber, "CellCoordinate", "out">;
},
$strip,
>
A three-quarter stitch: a half stitch plus a quarter stitch on the perpendicular diagonal. The quarter can only reach the two corners the half does not occupy, so a
tl-brhalf allowstop-rightorbottom-left, and abl-trhalf allowstop-leftorbottom-right.