I have a question on how to draw an angle bisector in asymptote? I've seen others use tikz and others but not a lot using asymptote. Also I've seen this before and one of them used asymptote, but with all the color and other commands I'm not really sure how he/she did it. Here is the triangle for reference:
\documentclass[a4paper, 12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[inline]{asymptote}
\usepackage{float}
\usepackage{fullpage}
\usepackage{wrapfig}
\title{Triangles}
\author{DandelionDreams}
\date{July, 2020}
\begin{document}
\maketitle
\noindent
\begin{minipage}{0.49\textwidth}
\begin{flushleft}
\textbf{Incenter}
An incenter is the intersection of the three angle bisectors of a triangle, which is usually denoted by $I$.
\end{flushleft}
\end{minipage}% no blank line after
\begin{minipage}{0.49\textwidth}
\begin{flushright}
\begin{asy}
pair A, B, C, D;
A = (80,80);
B = (0,0);
C = (120,0);
draw((0,0)--(80,80)--(120,0)--cycle);
label("$A$", A, N);
label("$C$", C, SE);
label("$B$", B, SW);
\end{asy}
\end{flushright}
\end{minipage}
\end{document}
I want to draw the angle bisector of angle{BAC} AD, intersecting BC at D.
Note: A newbie to asy here! Also I'm pretty new to tex.stackexchange too, as I've only asked one question a few days ago. Please point out anything that I need to change and thanks a lot!


