RL Vision Knowledge Base
Support questions and answers for software by RL Vision.
Note: This is an archived discussion. Any bug, problem or suggestion mentioned here is likely to have been fixed since it was written.
Subject: Re: Hot Spot Studio - Suggestion
Date: Sun, 18 Apr 2010 20:08:02 +0200Interesting idea. Thanks for the suggestion! I'll see if I can add it soon!
// Dan
Rickard wrote:
> Hi,
>
> I just downloaded an played around with Hot Spot Studio, great progam!
>
> One suggestion though, would be great if you could make a small change
> so that the program first renders every fourth pixel, before it then goes ahead
> and renders every pixel.
>
> In stead of doing:
> For y=0 to maxY
> For x= 0 to maxX
> :
> :
> Next x
> Next y
> First do:
> For y=0 to maxY step 2
> For x= 0 to maxX step 2
> :
> :
> Next x
> Next y
> And then render the rest, if you catch my drift :-)
>
> By doing so, one gets a rough look at what the end result will be without having
> to wait for a complete render (I have a slow computer).
>
> B.R.
> Rickard
// Dan
Rickard wrote:
> Hi,
>
> I just downloaded an played around with Hot Spot Studio, great progam!
>
> One suggestion though, would be great if you could make a small change
> so that the program first renders every fourth pixel, before it then goes ahead
> and renders every pixel.
>
> In stead of doing:
> For y=0 to maxY
> For x= 0 to maxX
> :
> :
> Next x
> Next y
> First do:
> For y=0 to maxY step 2
> For x= 0 to maxX step 2
> :
> :
> Next x
> Next y
> And then render the rest, if you catch my drift :-)
>
> By doing so, one gets a rough look at what the end result will be without having
> to wait for a complete render (I have a slow computer).
>
> B.R.
> Rickard