Results 1 to 6 of 6

Thread: Explanation of Wilbur's add, subtract, multiply, divide, etc.?

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Administrator waldronate's Avatar
    Join Date
    Mar 2007
    Location
    The High Desert
    Posts
    3,577

    Default

    The operations in Wilbur are defined as:

    result = surface op value

    Where surface is the current surface value, op is the operation to perform (add, subtract, etc.), and value is the numeric output of the activity being performed (e.g. Surface>>Fill>>Constant will use the number provided, fractal noise will generate a number at the given point from the fractal field, and so on). The operations min and max return the largest and smallest values of (surface, value), respectively.

    For example, the Add operation with fractal noise might work like this:

    A given point on the surface currently has a value of 50 and the generated fractal noise has a value of 12. The result of the Add operation would be 62=(50+12), Subtract would yield 38=(50-12), min would yield 12, and max would yield 50.

    One thing that might happen with add is that if you are adding a value that's substantially larger than the existing terrain, you might only see that value. This can happen easily with the fractal noises because the default range is only -1 to +1 and successive operations will have that same magnitude.

    Note that after the computation is performed, "result" is blended into the surface through the selection. This final blending step prevents the result from affecting the surface in unselected areas.

  2. #2
    Guild Journeyer Pananacakes's Avatar
    Join Date
    Aug 2014
    Location
    Portland, Maine, USA
    Posts
    102

    Default

    Thanks Waldronate.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •