2 attractor at on specific pattern

How I Can Have 2 attractors (for example in this picture (HOPE border+ face) at the same time.

I assigned your message to an appropriate category.
In the future, please categorize your new messages so they will have a better chance of being seen by someone that can help.

1 Like

Hello

Knowing that an attractor is a function giving a number between r1 and r2 depending on the position att(pos), you can make an addition, multiplication … on each attractor. So
attractor total (pos) = attractor1(pos) + attractor2(pos)
attractor total (pos) = attractor1(pos) * attractor2(pos)

Do the math depending on what you have and what you want.
The most common is usually working with number between 0 and 1 and doing some multiplication. If it goes the wrong side you can do
attractor total (pos) = attractor1(pos) * (1-attractor2(pos))
or
attractor total (pos) = (1-attractor1(pos)) * (1-attractor2(pos))

1 Like

You can look at this thread

1 Like

Thank you so much