Question: How to fix these warnings

restart;
with(plots);
with(geometry);
_EnvHorizontalName := 'x';
_EnvVerticalName := 'y';
HC := HorizontalCoord;
VC := VerticalCoord;
a := 11;
b := 7;
t := (3*Pi)/8;
c := sqrt(a^2 - b^2);
ellipse(e1, x^2/a^2 + y^2/b^2 = 1);
point(Oo, 0, 0);
point(A, a*cos(t), b*sin(t));
point(B, a*cos(t + 2/3*Pi), b*sin(t + 2/3*Pi));
point(C, a*cos(t + 4/3*Pi), b*sin(t + 4/3*Pi));
point(G, (A[1] + B[1] + C[1])/3, (A[2] + B[2] + C[2])/3);
eval(coordinates(G));
line(NorA, y - A[2] = a^2*A[2]*(x - A[1])/b^2, [x, y]);
line(NorB, y - B[2] = a^2*B[2]*(x - B[1])/b^2, [x, y]);
line(NorC, y - C[2] = a^2*C[2]*(x - C[1])/b^2, [x, y]);
lieu := a^2*x^2 + b^2*y^2 - c^4/4 = 0;
Lieu := implicitplot(lieu, x = -a .. a, y = -b .. b, color = green);
tx := textplot([[coordinates(A)[], "A"], [coordinates(B)[], "B"], [coordinates(C)[], "C"], [coordinates(Oo)[], "O"]], font = [times, bold, 16], align = [above, left]);
dr := draw([e1(color = blue), NorA(color = red), NorB(color = red), NorC(color = red), A(color = red, symbol = solidcircle, symbolsize = 12), B(color = red, symbol = solidcircle, symbolsize = 12), C(color = red, symbol = solidcircle, symbolsize = 12), Oo(color = red, symbol = solidcircle, symbolsize = 12)]);
display([dr, tx, Lieu], scaling = constrained, axes = normal, title = "Ellipse et normales ", titlefont = [HELVETICA, 14]);
      [1        1        1       1        1        1     ]
      [- A[1] + - B[1] + - C[1], - A[2] + - B[2] + - C[2]]
      [3        3        3       3        3        3     ]

                              NorA

                              NorB

                              NorC

Warning, data could not be converted to float Matrix
Warning, data could not be converted to float Matrix
Warning, data could not be converted to float Matrix

Please Wait...