Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # mountains_with_Plains.py
- def combined(x, y):
- m = mountains(x, y)
- p = plains(x, y)
- w = simple_curve(x, y)
- return (p * w) + (m * (1 - w))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement