Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Gregory

Pages: 1 2 [3]
31
Graphics / draw ellipses
« on: January 05, 2010, 11:45:23 pm »
yes, i'm manipuling the pixels directily, for this, i want to know de math for make elipse with 4 points, X1,Y1,X2,Y2

32
Graphics / draw ellipses
« on: January 05, 2010, 10:48:25 pm »
the problem is that i'm make this for my paint program, i want to know de math for this

33
Graphics / draw ellipses
« on: January 05, 2010, 09:43:54 pm »
How can I draw ellipses?

34
General / paint program
« on: January 05, 2010, 05:50:59 am »
Can I use a list of pixels that color, and I got this list ouver adjacent pixels with this color put it in the list

35
General / paint program
« on: January 05, 2010, 04:16:24 am »
I'm making a paint program, called "simple paint", but I have a vague idea of how to make the paint bucket. Any ideas?

36
General / Where SFML 2.0
« on: January 04, 2010, 05:55:08 am »
Where is the link for download the SFML 2.0?

37
Graphics / Large Images
« on: January 03, 2010, 04:42:15 am »
How can I load large images? Because very large images do not appear here.

38
Window / Get the char of key pressed
« on: December 11, 2009, 05:02:01 pm »
Code: [Select]
if (myevent.Type == sf::Event::KeyPressed and state == 0 and tempo_novo != -1 and myevent.Key.Code == sf::Key::A) {
                if (myevent.Key.Code == sf::Key::BackSlash) {
                    pos_cur--;
                    nome_digit[pos_cur+1] = '\0';
                }
                else {
                    nome_digit[pos_cur] = myevent.Key.Code;
                    nome_digit[pos_cur+1] = '\0';
                    nome_str = nome_digit;
                    record_name[tempo_novo] = nome_str;
                    if (pos_cur < 13) {
                        pos_cur++;
                    }
                }
            }

39
Window / Get the char of key pressed
« on: December 11, 2009, 04:38:41 pm »
I'm make a very good online game, the problem is not this, i'm brazilian and my english is not very good, can you write the code for i make that you speaked?

40
Window / Get the char of key pressed
« on: December 11, 2009, 04:05:39 pm »
Sorry, but i'm inexperient, how do i make this?

41
Window / Get the char of key pressed
« on: December 11, 2009, 02:36:34 pm »
how do i get a char or pointer to char of the last key pressed in ACSII, to make a text box?

Pages: 1 2 [3]