#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
UNSW Indigenous pre-program 2024

Author: Chun Tung Chou, UNSW 

This function illustrates the drawing of a triangle 
using draw.draw_line()

"""

import draw

# Draw a triangle with vertices (x0, y0), (x1, y1) and (x2, y2)
x0 = 0
y0 = 0
x1 = 0.2
y1 = 0.5
x2 = 0.8
y2 = 

draw.start()
draw.draw_line(x0, y0, x2, y2)
draw.draw_line(x2, y2, x1, y1)


# After that we will ask you to work on Exercises 1-3. 