# triangle()

### Example

![](https://768248463-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fqbs7pgU3AVBY06Rl9M31%2Fuploads%2F9U3pB9v8zK6p2AXkjmAM%2Fspaces_qbs7pgU3AVBY06Rl9M31_uploads_Ggln3ASl0agPEHKqHvd1_triangle.png?alt=media\&token=02eaf7b8-9ffa-4185-ae67-6e183b88af55)

```python
triangle(100, 100, 200, 300,300,100)
```

### Syntax

```python
triangle(x1, y1, x2, y2, x3, y3)
```

<table><thead><tr><th width="167">Input</th><th>Description</th></tr></thead><tbody><tr><td>x1</td><td>x co-ordinate of the left corner</td></tr><tr><td>y1</td><td>y co-ordinate of the left corner</td></tr><tr><td>x2</td><td>x co-ordinate of the middle corner</td></tr><tr><td>y2</td><td>y co-ordinate of the middle corner</td></tr><tr><td>x3</td><td>x co-ordinate of the right corner</td></tr><tr><td>y3</td><td>y co-ordinate of the right corner</td></tr></tbody></table>

<figure><img src="https://768248463-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fqbs7pgU3AVBY06Rl9M31%2Fuploads%2Fpy5ASmE4EgrCQyirxOou%2Fspaces_qbs7pgU3AVBY06Rl9M31_uploads_JA12QZHoFVqSJSSyfeY3_image.png?alt=media&#x26;token=6e805d0b-d4c4-4fdf-a7b7-bbff1d718c23" alt=""><figcaption></figcaption></figure>

### Description

**triangle()** draws a triangle on the canvas, using the inputs to determine the positions of the 3 corners. Even though this is the simplest 2D shape, it takes the most complicated form of input, since total freedom to specify the shape is given.

{% hint style="info" %}
Find these documents helpful? Let the people who made them help your child learn to code at [**Strivemath**](https://www.strivemath.com/)<mark style="color:blue;">**!**</mark>

We'd love to hear your Feedback/Comments [here](https://docs.google.com/forms/d/e/1FAIpQLSeqorBAGTya-YBRI-VFjJxtgQtCz3ucGDI96K96sNyuaGuvdw/viewform?usp=sf_link).
{% endhint %}
