I'm quite new to LaTeX and I need some help moving this triangle that I've drawn with asymptote to the right, if it's possible. Below is my code:
\documentclass[letterpaper, 12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[inline]{asymptote}
\usepackage{float}
\usepackage{fullpage}
\usepackage{wrapfig}
\begin{document}
\section{Center}
A triangle has many centers, and in this lesson, we will mainly focus on three of them: \underline{centroid}, \underline{incenter}, and \underline{circumcenter}.
\textbf{Centroid}
\bigskip
\begin{minipage}{0.6\textwidth}
\begin{flushleft}
A centroid is the intersection of the three medians \linebreak of a triangle, which is usually denoted by $G$.
\end{flushleft}
\begin{asy}
pair A, B, C, D, E, F;
A = (80,80);
B = (0,0);
C = (120,0);
D = (60,0);
E = (100,40);
F = (40,40);
draw((0,0)--(80,80)--(120,0)--cycle);
draw((0,0)--(100,40));
draw((80,80)--(60,0));
draw((120,0)--(40,40));
label("$A$", A, N);
label("$C$", C, SE);
label("$B$", B, SW);
label("$D$", D, S);
label("$E$", E, NE);
label("$F$", F, NW);
\end{asy}
\end{minipage}
\end{document}
I want to move the triangle to the highlighted place, if that's possible...
Sorry that I'm very new and don't know quite a lot of stuff. Please be patient with me if I have some questions and thank you for all your help in advance!!!
PS I've also seen some people say to use "float"? But I don't really know how to use it...



\documentclassand make it compilable, so potential helpers don't have to do any guessing. – barbara beeton Jul 12 '20 at 23:23