Search found 33 matches

by Astusvis
Sun Aug 07, 2011 4:32 pm
Forum: Support and Development
Topic: Multiple threads from one file?
Replies: 24
Views: 12298

Re: Multiple threads from one file?

Ok, I'll do that.
And yes I have seen the warnings, but for some reason I can't restart a thread without manually killing it first. I disregarded the warning since I am only killing it once it has finished.
by Astusvis
Sat Aug 06, 2011 4:15 pm
Forum: Support and Development
Topic: Multiple threads from one file?
Replies: 24
Views: 12298

Re: Multiple threads from one file?

OK, now my having multiple threads make those threads corrupt the imagedata they are making >.>
Can anyone make sense of why?
by Astusvis
Sat Aug 06, 2011 3:09 pm
Forum: Support and Development
Topic: Multiple threads from one file?
Replies: 24
Views: 12298

Re: Multiple threads from one file?

Is there a limit to the number of threads? Or a number I *shouldn't* exceed?
by Astusvis
Sat Aug 06, 2011 3:07 pm
Forum: Support and Development
Topic: Fail maths.
Replies: 27
Views: 3340

Re: Fail maths.

I think that instead of using decimals, I'll just multiply/divide by ten and use integers in order to space it out.
(That's all I'm trying to do, increment an integer every X frames)
by Astusvis
Sat Aug 06, 2011 2:57 pm
Forum: Support and Development
Topic: Fail maths.
Replies: 27
Views: 3340

Re: Fail maths.

So there aren't any workarounds?
by Astusvis
Sat Aug 06, 2011 2:26 pm
Forum: Support and Development
Topic: Fail maths.
Replies: 27
Views: 3340

Re: Fail maths.

Just noticed something:
If I use this code (pseudo code):

Code: Select all

depth = 0
LOOP
print(depth == 1.9, depth)
depth = depth + 0.1
END LOOP
I get

Code: Select all

false   1.9
BUT
If I use this code (pseudo code):

Code: Select all

depth = 1.9
print(depth == 1.9, depth)
I get

Code: Select all

true   1.9
by Astusvis
Sat Aug 06, 2011 2:22 pm
Forum: Support and Development
Topic: Fail maths.
Replies: 27
Views: 3340

Re: Fail maths.

Srsly!!
by Astusvis
Sat Aug 06, 2011 2:12 pm
Forum: Support and Development
Topic: Fail maths.
Replies: 27
Views: 3340

Fail maths.

Why do I get the response of

Code: Select all

false    1.9
when I run this code

Code: Select all

print(depth == 1.9, depth)
Am I just being stupid, or is something severely wrong?
by Astusvis
Sat Aug 06, 2011 10:57 am
Forum: Support and Development
Topic: Multiple threads from one file?
Replies: 24
Views: 12298

Multiple threads from one file?

_
by Astusvis
Sat Aug 06, 2011 9:07 am
Forum: Libraries and Tools
Topic: Mandelbrot Fractal - that doesn't suck...
Replies: 15
Views: 5390

Re: Mandelbrot Fractal - that doesn't suck...

Who knew locals increased the speed so much... :O
Next: multi-threading!