Eufloria > Eufloria Classic Mods

RingDesigner - Map Editor

<< < (7/11) > >>

Orion63:

--- Quote from: Aino on August 18, 2011, 12:41:41 AM ---IDK, how do you bend a straight line?

It would be super ambitious and super cool indeed, but it's impossible to do in Eufloria D:

And I don't think I'll make it before 19:00 PM today(local time, +1) or 18:00 London Time :)

--- End quote ---

Eufloria normally uses straight lines, which change direction occasionally(If you zoom in the planet SendRadius circle, you can see that it is far from a circle), to produce the effect of curve lines.

For annikk.exe idea, here some python code that does that:


--- Code: ---#! /usr/bin/env python

import pygame
from sys import argv

#width, height = int(argv[1]), int(argv[2])

width, height = 1024, 768

screen = pygame.display.set_mode((width, height))

white = (255, 255, 255)
green = (0, 255, 0)
red = (255, 0, 0)
blue = (0, 0, 255)

def draw_lines(num, width, height, color):
     for line in range(num+1):
          pygame.draw.aaline(screen, color, (0, line*(height/num)), (width-line*(width/num), 0))
          pygame.draw.aaline(screen, color, (0, height-line*(height/num)), (width-line*(width/num), height))
          pygame.draw.aaline(screen, color, (width-line*(width/num), 0), (width, height-line*(height/num)))
          pygame.draw.aaline(screen, color, (width, line*(height/num)), (width-line*(width/num), height))

while True:
     event = pygame.event.poll()
     if event.type == pygame.QUIT:
          break 
     screen.fill((28, 28, 28))
     draw_lines(50, width, height, white)
     pygame.display.flip()

--- End code ---

Aino:
Heh... But as mentioned, I won't do this before two requirements:

1 - I'm done with the newest update
2 - I feel for doing it :P

Pilchard123:

--- Quote from: Aino on August 18, 2011, 12:51:38 AM ---the missing map of Pilchard, where is it?

--- End quote ---

It failed, didn't I tell you? I'm no good at making plain maps, only ones that show off a new thing that I made. Sorry.

Aino:
It failed? o.O

Well, thats sad, but ok... gotta finish it myself then I guess :P

Fergy1337:
Full respect to all (the other guy needs some respect hehehe) involved in this , really should bust a hole in new map feaver !!!!

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version