I am trying to draw a triangle with vertices A(-297,-209), B(-5,10), C(67,31)and inscribed.
I tried
\documentclass{standalone} \usepackage{tkz-euclide} \usetkzobj{all} \begin{document} \begin{tikzpicture}[scale=0.5] \tkzDefPoint(-297,-209){A} \tkzDefPoint(-5,10){B} \tkzDefPoint(67,31){C} \tkzDrawPolygon[ultra thick](A,B,C) \tkzDefCircle[in](A,B,C) \tkzGetPoint{O} \tkzGetLength{rIN} \tkzDrawPoints(A,B,C,O) \tkzDrawCircle[R,color=red,ultra thick](O,\rIN pt) \tkzLabelPoints(B,C) \tkzLabelPoints(A,O) \end{tikzpicture} \end{document} How can I get a nice view with this picture?
This is picture from Maple.



scale=0.5byscale=0.05. You can also addline join=roundand add[above]in\tkzLabelPoints[above](B,C).