Advertisement
here2share

# mountains_with_Plains.py

Aug 11th, 2021
1,093
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. # mountains_with_Plains.py
  2.  
  3. def combined(x, y):
  4.     m = mountains(x, y)
  5.     p = plains(x, y)
  6.     w = simple_curve(x, y)
  7.     return (p * w) + (m * (1 - w))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement