Creates a plane.




## Description
no description
## Parameters

<table>
<thead>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Description</th>
	</tr>
</thead>
<tr>
	<td>size</td>
	<td><div class='bg-teal-800 px-2 py-px text-white rounded-sm'>vector2</div></td>
	<td>size of the plane</td>
</tr>
<tr>
	<td>useSegmentsCount</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>defines if the plane resolution is sets via the number of segments or via the step size</td>
</tr>
<tr>
	<td>stepSize</td>
	<td><div class='bg-yellow-800 px-2 py-px text-white rounded-sm'>float</div></td>
	<td>step size</td>
</tr>
<tr>
	<td>segments</td>
	<td><div class='bg-teal-800 px-2 py-px text-white rounded-sm'>vector2</div></td>
	<td>segments count</td>
</tr>
<tr>
	<td>direction</td>
	<td><div class='bg-blue-800 px-2 py-px text-white rounded-sm'>vector3</div></td>
	<td>axis perpendicular to the 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 of the plane</td>
</tr>
<tr>
	<td>asLines</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>create lines instead of polygons</td>
</tr>
</table>