public override PointF Draw(float x, float y, double pAngle)
        {
            var draw       = new DrawStitches();
            var nextPoints = draw.DrawHalfDoubleCrochetIncrease(x, y, pAngle, HeightMultiplier);

            return(nextPoints[0]);
        }
Example #2
0
        public override PointF Draw(float x, float y, double pAngle)
        {
            var draw = new DrawStitches();

            return(draw.DrawVerticalChainStitch(x, y, pAngle, HeightMultiplier));
        }
Example #3
0
        public override PointF Draw(float x, float y, double pAngle)
        {
            var draw = new DrawStitches();

            return(draw.DrawDoubleTrebleCrochet(x, y, pAngle, HeightMultiplier));
        }