Beispiel #1
0
	template<class T> Line2D<T> Line2D<T>::parallelLine(const Point2<T> &p) const
	{
		Vector2<T> ab = a.vector(b);
		return Line2D<T>(p, p.translate(ab));
	}