Ich nehme an das du bereits weißt wie du mit der Graphics Klasse arbeitest, insbesondere Linien zeichnen kannst und es nur um die Mathematik geht. Sinus - Kosinus
// Startpunkt
PointF startPoint = new PointF(100, 100);
// Winkel in Grad
float degree = 45;
// Länge
float length = 200;
// Winkel in Radiant umrechnen (PI entspricht 180 Grad)
float radians = degree * (float)Math.PI / 180;
// Endpunkt berechnen
float endPointX = startPoint.X + length * (float)Math.Cos(radians);
float endPointY = startPoint.Y + length * (float)Math.Sin(radians);
PointF endPoint = new PointF(endPointX, endPointY);
// Zeichnen der ersten Linie
e.Graphics.DrawLine(Pens.Red, startPoint, endPoint);
// Start der zweiten Linie
// Winkel in Grad
degree = 15;
// Länge
length = 200;
// Winkel in Radiant umrechnen
radians = degree * (float)Math.PI / 180;
// Endpunkt
float newEndPointX = endPoint.X + length * (float)Math.Cos(radians);
float newEndPointY = endPoint.Y + length * (float)Math.Sin(radians);
PointF newEndPoint = new PointF(newEndPointX, newEndPointY);
// Zeichnen der zweiten Linie
e.Graphics.DrawLine(Pens.Blue, endPoint, newEndPoint);