POV-Ray : Newsgroups : povray.beta-test : windows beta 32 available Server Time
7 Jul 2024 06:36:38 EDT (-0400)
  windows beta 32 available (Message 1 to 10 of 16)  
Goto Latest 10 Messages Next 6 Messages >>>
From: Chris Cason
Subject: windows beta 32 available
Date: 5 Apr 2009 08:49:37
Message: <49d8a8e1@news.povray.org>
Beta 32 for Windows (32 and 64-bit) is now available at:

  http://www.povray.org/beta/

Source code will be updated in due course. Linux users will need to wait a
few days, sorry :)

-------------------------------------------
Changes between 3.7.beta.31 and 3.7.beta.32
-------------------------------------------

Added ARRAYS_WriteDF3 macro to arrays.inc for writing an array to a df3 file.

Fixed bug creating artifacts in output file when mosaic preview is used
with +EP2 and -A.

Several Unix build fixes.

Added radiosity octree performance stats and fixed stats for max trace
level & parse time.

Made some improvements to performance in crackle cache, and optimised the
management of the crackle cache size by setting limits in megabytes
(currently per-thread and not user-settable: this will change).
	
-------------
Binary #write
-------------

It is now possible to write 8, 16 and 32-bit words to an external file.
These words may be arranged in either little or big-endian fashion.

Placing one of the following keywords in the argument list of a #write
statement causes the values up to the next comma to be written in binary
format, using 2's complement integer representation, rounded to the nearest
integer in the representable range:

  uint8              - unsigned byte (0..255)
  sint8              - signed byte (-128..127)
  uint16be, uint16le - unsigned 16-bit word (0..65535)
  sint16be, sint16le - signed 16-bit word (-32768..32767)
  sint32be, sint32le - signed 32-bit word (-2^31..2^31-1)

As of now, unsigned 32-bit words are not supported.

Keywords ending in "be" will cause the values to be written most
significant byte first ("big endian", aka network byte order) while those
ending in "le" will instead write the least significant byte first ("little
endian", Intel format).

The values to be written in binary must be numbers or vectors; the latter
will be written component by component as specified, in the standard x-y-z
order, without any separating or enclosing characters.

There is a sample macro called 'ARRAYS_WriteDF3' in arrays.inc which shows
how this feature may be used.

---------------------------------
Subsurface Light Transport (SSLT)
---------------------------------

Beta 32 adds experimental support for subsurface light transport (aka
subsurface scattering).
	
Currently, SSLT is activated for a particular object by adding the
following statement to its finish (note that this is very likely to change):
	
  subsurface { COLOR, COLOR }
	
specifying the (reduced) scattering coefficients (sigma'[s]) and absorption
coefficients (sigma[a]), respectively, in units of 1/mm, for each of the
three basic colors. The object's IOR will also affect the results.
	
The algorithm is designed to give realistic results at a scale of 10 mm per
POV-Ray unit by default; for other scales, place the following statement in
the global_settings section:
	
  mm_per_unit NUMBER
	
To tune the algorithm for quality or performance, the number of samples for
the diffuse scattering and single-scattering approximation, respectively,
can be specified by placing the following statement in the global_settings
section:
	
  subsurface { samples NUMBER, NUMBER }

There is a sample SSLT scene in scenes/subsurface/subsurface.pov.

SSLT is still in alpha stage.


Post a reply to this message

From: Warp
Subject: Re: windows beta 32 available
Date: 5 Apr 2009 08:55:06
Message: <49d8aa2a@news.povray.org>
Cool new features in this beta. :)

-- 
                                                          - Warp


Post a reply to this message

From: Carlo C 
Subject: Re: windows beta 32 available
Date: 5 Apr 2009 11:40:00
Message: <web.49d8d0caa35bfcda18d8b8480@news.povray.org>
Warp <war### [at] tagpovrayorg> wrote:
> Cool new features in this beta. :)
>
> --
>                                                           - Warp


Downloaded!
Thank you *clipka*, thank you *chrisc* and thank you *calimet*!

--
Carlo


Post a reply to this message

From: John VanSickle
Subject: Re: windows beta 32 available
Date: 5 Apr 2009 13:09:05
Message: <49d8e5b1$1@news.povray.org>
Chris Cason wrote:
> -------------
> Binary #write
> -------------

Cool!  Now we can write a Reyes renderer in POV-Ray SDL!

Regards,
John


Post a reply to this message

From: Mike Hough
Subject: Re: windows beta 32 available
Date: 5 Apr 2009 21:14:56
Message: <49d95790$1@news.povray.org>
> ---------------------------------
> Subsurface Light Transport (SSLT)
> ---------------------------------
>
> Beta 32 adds experimental support for subsurface light transport (aka
> subsurface scattering).

This is quite disconcerting and I must protest the decision to include this 
feature at this time.  I am swamped with work right now and will not be able 
to concentrate.

;)


Post a reply to this message

From: clipka
Subject: Re: windows beta 32 available
Date: 5 Apr 2009 21:50:00
Message: <web.49d95fa8a35bfcda68105bc50@news.povray.org>
"Mike Hough" <nos### [at] nospamcom> wrote:
> > ---------------------------------
> > Subsurface Light Transport (SSLT)
> > ---------------------------------
> >
> This is quite disconcerting and I must protest the decision to include this
> feature at this time.  I am swamped with work right now and will not be able
> to concentrate.
>
> ;)

Then maybe it will be comforting for you to know that the feature is still at a
very, very alpha-ish state and you're actually not missing too much ;)


Post a reply to this message

From: Chambers
Subject: Re: windows beta 32 available
Date: 6 Apr 2009 00:20:45
Message: <49d9831d$1@news.povray.org>
On 4/5/2009 6:15 PM, Mike Hough wrote:
>> ---------------------------------
>> Subsurface Light Transport (SSLT)
>> ---------------------------------
>>
>> Beta 32 adds experimental support for subsurface light transport (aka
>> subsurface scattering).
>
> This is quite disconcerting and I must protest the decision to include this
> feature at this time.  I am swamped with work right now and will not be able
> to concentrate.
>
> ;)
>
>

I'm not even going to *try* to look at it yet... only three weeks to go 
with the current classes, I can't afford to lose focus!

-- 
...Chambers
www.pacificwebguy.com


Post a reply to this message

From: nemesis
Subject: Re: windows beta 32 available
Date: 6 Apr 2009 00:55:00
Message: <web.49d98ad6a35bfcdab0025eb50@news.povray.org>
"Carlo C." <nomail@nomail> wrote:
> Warp <war### [at] tagpovrayorg> wrote:
> > Cool new features in this beta. :)
> >

> Downloaded!
> Thank you *clipka*, thank you *chrisc* and thank you *calimet*!

Yes!  Well, I'll wait a few more days to thank Calimet. ;)


Post a reply to this message

From: Chris Cason
Subject: Re: windows beta 32 available
Date: 6 Apr 2009 08:29:29
Message: <49d9f5a9@news.povray.org>
Chambers wrote:
> with the current classes, I can't afford to lose focus!

try "blur_samples 0"


Post a reply to this message

From: Stephen
Subject: Re: windows beta 32 available
Date: 6 Apr 2009 08:41:30
Message: <b3ujt4talujhtrd17b083lus6kl232q2ro@4ax.com>
On Mon, 06 Apr 2009 22:29:21 +1000, Chris Cason
<del### [at] deletethistoopovrayorg> wrote:

>Chambers wrote:
>> with the current classes, I can't afford to lose focus!
>
>try "blur_samples 0"

Groan!
-- 

Regards
     Stephen


Post a reply to this message

Goto Latest 10 Messages Next 6 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.