When I was young I used to draw a sequence of straight lines on graph paper which made a curve after I finished. On a coordinate plane, the lines would be equivalent to starting at $y=9$ on the $y$ axis and ending at $x=1$ on the $x$ axis. With each line, I would decrease the $y$ by one unit and increase the $x$ by one unit.
Here is a desmos graph that illustrates. https://www.desmos.com/calculator/u4ea8swmfg
Here is a similar example where the angle between the lines is 60 degrees. https://drive.google.com/open?id=0B5QHq_oPha0ybGdrbFNhUHRPOGc
I think each line is basically a tangent line along the curve produced by taking a first derivative.
Are these types of curves parabolas or possibly hyperbolae? And how could I find the equation of such a curve?
The curve you have described is in fact a parabola; specifically, it is the parabola generated as the quadratic Bézier curve with the control points as the ends of your lines.
The equation of this parabola is, for three points $a, b, c$:
$$f(t)=(1-t)^2a+t(1-t)b+t^2c$$
This is a parametric formula; you enter a $t$ value and it gives the $x$ and $y$ values of a point on the curve, as opposed to entering an $x$ value and getting the $y$ value out.
In the first case, with the right angle, the parabola is simply
$$f(t)=\left(10t^2,10(1-t)^2\right)$$
shown in red on this figure.
The $60^\circ$ angle looks like this.