Scatter points onto a geometry


## Description
no description
## Parameters

<table>
<thead>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Description</th>
	</tr>
</thead>
<tr>
	<td>pointsCount</td>
	<td><div class='bg-orange-800 px-2 py-px text-white rounded-sm'>integer</div></td>
	<td>number of points to create</td>
</tr>
<tr>
	<td>seed</td>
	<td><div class='bg-orange-800 px-2 py-px text-white rounded-sm'>integer</div></td>
	<td>seed</td>
</tr>
<tr>
	<td>useWeightAttribute</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>attribute which will influence the distribution of points</td>
</tr>
<tr>
	<td>weightAttribute</td>
	<td><div class='bg-purple-800 px-2 py-px text-white rounded-sm'>string</div></td>
	<td>attribute which will influence the distribution of points</td>
</tr>
<tr>
	<td>transferAttributes</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>toggle on to transfer attribute from the input geometry to the created points</td>
</tr>
<tr>
	<td>attributesToTransfer</td>
	<td><div class='bg-purple-800 px-2 py-px text-white rounded-sm'>string</div></td>
	<td>names of the attributes to transfer</td>
</tr>
<tr>
	<td>addIdAttribute</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>add an id attribute, starting at 0, incrementing by 1 for each point (0,1,2,3...)</td>
</tr>
<tr>
	<td>addIdnAttribute</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>add an idn attribute, which is the id normalized between 0 and 1</td>
</tr>
</table>