You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parameter rCoeff in PoissonDiskSampler is used to compute the minimum distance between points
minDist = rCoeff * meanEdgeLength;
The value meanEdgeLength is computed by PoissonDiskSampler and stored as member. If I want to sample a surface with a known minDist I need to compute the meanEdgeLength myself in order to specify rCoeff as minDist / meanEdgeLength.
I would propose to add a getter to get the mean edge length, e.g.
The parameter
rCoeff
in PoissonDiskSampler is used to compute the minimum distance between pointsThe value
meanEdgeLength
is computed byPoissonDiskSampler
and stored as member. If I want to sample a surface with a knownminDist
I need to compute themeanEdgeLength
myself in order to specifyrCoeff
asminDist / meanEdgeLength
.I would propose to add a getter to get the mean edge length, e.g.
The text was updated successfully, but these errors were encountered: