cross-stitch - v2.0.0
    Preparing search index...

    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-br half allows top-right or bottom-left, and a bl-tr half allows top-left or bottom-right.