Creates a circle.



## Description
no description
## Parameters

<table>
<thead>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Description</th>
	</tr>
</thead>
<tr>
	<td>radius</td>
	<td><div class='bg-yellow-800 px-2 py-px text-white rounded-sm'>float</div></td>
	<td>circle radius</td>
</tr>
<tr>
	<td>segments</td>
	<td><div class='bg-orange-800 px-2 py-px text-white rounded-sm'>integer</div></td>
	<td>segments count</td>
</tr>
<tr>
	<td>open</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>toggle on to have an arc instead of a closed circle</td>
</tr>
<tr>
	<td>connectLastPoint</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>connects last dot for open circle</td>
</tr>
<tr>
	<td>arcAngle</td>
	<td><div class='bg-yellow-800 px-2 py-px text-white rounded-sm'>float</div></td>
	<td>angle fo the arc</td>
</tr>
<tr>
	<td>direction</td>
	<td><div class='bg-blue-800 px-2 py-px text-white rounded-sm'>vector3</div></td>
	<td>direction of the axis perpendicular to the circle plane</td>
</tr>
<tr>
	<td>center</td>
	<td><div class='bg-blue-800 px-2 py-px text-white rounded-sm'>vector3</div></td>
	<td>center</td>
</tr>
</table>