Adds points or creates lines.


## Description

The add node can be used to add a single or multiple points.
If given points as input, it can also connect those points with a line.


## Parameters

<table>
<thead>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Description</th>
	</tr>
</thead>
<tr>
	<td>createPoint</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>toggle to create points</td>
</tr>
<tr>
	<td>pointsCount</td>
	<td><div class='bg-orange-800 px-2 py-px text-white rounded-sm'>integer</div></td>
	<td>define the number of points to create</td>
</tr>
<tr>
	<td>position</td>
	<td><div class='bg-blue-800 px-2 py-px text-white rounded-sm'>vector3</div></td>
	<td>the position of the created points</td>
</tr>
<tr>
	<td>connectInputPoints</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>toggle on to connect the points from the input geometry</td>
</tr>
<tr>
	<td>connectToLastPoint</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>check if the last point is connected</td>
</tr>
</table>