Search found 87 matches

by astr0
February 5th, 2013, 3:53 pm
Forum: Everything
Topic: Chili Face!
Replies: 24
Views: 8676

Re: Chili Face!

yeah :( I heard he is busy... I hope he will come back and continue with lessons. at least finish intermidiate part :)
by astr0
September 13th, 2012, 11:50 am
Forum: Everything
Topic: number of arrays are limited???
Replies: 7
Views: 2795

Re: number of arrays are limited???

ok i will listen your advices. i am making paint which looks great so far but i stucked on this problem. because when i draw some line or sth i need to store current color datas of pixels that make that line... after that i just need to do sth like this at the end of the frame for ( int x = 0; x < 7...
by astr0
September 12th, 2012, 8:02 am
Forum: Everything
Topic: number of arrays are limited???
Replies: 7
Views: 2795

Re: number of arrays are limited???

thanx viruskiller. I will have to make my program on another way :)

best regards
by astr0
September 11th, 2012, 8:04 pm
Forum: Everything
Topic: number of arrays are limited???
Replies: 7
Views: 2795

number of arrays are limited???

I need to make an array of almoust 800 000 memory fields. it works if it is initialised as bool or char but I need it to be int. When it is an int array, when i run it it shows some error... If i put some small number for example int Pixels [ 10000 ]; it works but for int Pixels [ 791350 ]; it doesn...
by astr0
September 10th, 2012, 3:56 am
Forum: Everything
Topic: Getting mouse coordinates?
Replies: 13
Views: 4718

Re: Getting mouse coordinates?

dear i took hours of thinking what do you mean by drawing circles very fast and see what will happend. And of course i used circle tool in my thoughts and in Paint to draw circle instead of pen... Conclusion: don't skip lines! Yes i have idea how to fix that chili, using integrals but that will be a...
by astr0
September 10th, 2012, 3:04 am
Forum: Everything
Topic: Getting mouse coordinates?
Replies: 13
Views: 4718

Re: Getting mouse coordinates?

And problem solved... I can't belive that this is the way they fixed the problem. I can't belive that this was actually my idea of solving this problem few minutes after spoting it. True story: When i run on this problem first solution was counter. it always fixed my problem :) but when i saw it not...
by astr0
September 10th, 2012, 1:21 am
Forum: Everything
Topic: Getting mouse coordinates?
Replies: 13
Views: 4718

Re: Getting mouse coordinates?

Well I like to push myself hard until I find solution for some problem... I made that "paint" to see what can i do with this learned so far. I made interesting code about spray which will be added to this paint with gum ( gum is easy one :D ) tomorow. I thought i will solve that problem with pencil ...
by astr0
September 9th, 2012, 3:15 pm
Forum: Everything
Topic: Getting mouse coordinates?
Replies: 13
Views: 4718

Re: Getting mouse coordinates?

well you didn't get me chili :) I didn't take pen to draw circles :) i took pen just to draw like anything :) Yes i see that circles aren't perfectly round. But still i don't see how would that help me... anyway perhaps i didn't explain my problem good as i should :D if ( mouse.IsInWindow() ) { if (...
by astr0
September 9th, 2012, 11:32 am
Forum: Everything
Topic: Getting mouse coordinates?
Replies: 13
Views: 4718

Re: Getting mouse coordinates?

well i see that circle's size is updated by mouse position every frame if i am not wrong it isn't updated instantly with moving mouse.. But still pencil is working without those bugs :) i tried with counter ( i put some counter to go from 0 to 100 for example in hope that GetMouseX and Y will be upd...
by astr0
September 9th, 2012, 9:57 am
Forum: Everything
Topic: Getting mouse coordinates?
Replies: 13
Views: 4718

Getting mouse coordinates?

Hi I am making some simple paint app but I had one problem. Program is getting only one mouse x and mouse y coordinates per frame so when i am drawing something i get pixels over screen but not a curve. I only get curve when I move my mouse slower than 60 pixels per second. So I need a solution: how...