Path clonen?

Hallo.
Ich möchte diesen path dublizieren=clonen=g.scaletransform und diesen
neuen path dann um 10% proportional verkleinern. Kann mir jemand helfen???

GraphicsPath path_sch_l = new GraphicsPath(); //Pfad
SolidBrush brush_sch_l = new SolidBrush(Color.Black); //Brush

path_sch_l.AddLine(0, 20, 0, 250); //Linie links
path_sch_l.AddLine(20, 230, 20, 0); //Linie rechts
path_sch_l.CloseFigure();
g.FillPath(brush_sch_l, path_sch_l);

Danke im Voraus

Andreas