If you really want to plot a pencil of conics, Asymptote can do this in a much more geometric fashion. It has a routine to compute the conic through any given five points (with no three collinear), so you can actually compute the pencil of conics through a specified base locus of four points.
[Mathematical note: if a line passes through exactly one of the four points, then there is a natural isomorphism (points on the line) -> (conics in the pencil) taking a point to the unique conic that intersects that point plus the four fixed points.]

% file: foo.tex
% to compile: pdflatex --shell-escape foo
%
% For MikTeX users: Asymptote requires a separate program that cannot be installed
% by the package manager. You can get the installation file from
% https://sourceforge.net/projects/asymptote/files/2.35/
% (specifically, the file ending in setup.exe).
\documentclass{standalone}
\usepackage{asypictureB}
\begin{document}
\begin{asypicture}{name=PencilOfConics}
settings.outformat = "pdf";
import geometry; // Import the geometry module to use conics
unitsize(1cm);
pair a=(-3,-2), b=(-3,2), c=(2.5,1.5), d=(3,-2);
pair fifthpoint(real t) { return d + (0,t); }
real tmin = -3-.01*unitrand(), tmax = 3 + 0.01*unitrand();
int n = 20;
pair[] points = new pair[n];
for (int i = 0; i <= n; ++i) {
real t = interp(tmin, tmax, i/n);
pair pt = fifthpoint(t);
draw(conic(a,b,c,d,pt), interp(blue, red, i/n));
points[i] = pt;
}
dot(points);
\end{asypicture}
\end{document}