POV-Ray : Newsgroups : povray.macintosh : UberPOV wit MegaPOV glows for mac available Server Time
28 Mar 2024 06:00:32 EDT (-0400)
  UberPOV wit MegaPOV glows for mac available (Message 1 to 4 of 4)  
From: Yvo Smellenbergh
Subject: UberPOV wit MegaPOV glows for mac available
Date: 14 Nov 2016 12:46:24
Message: <5829f86f@news.povray.org>
UberPOV with MegaPOV glows is now available for Macintosh:

Executable OSX 10.7.4 and later, 64bit only
http://megapov.inetart.net/povrayunofficial_mac/uberpov_downloads/UberPOV-1.37.1.1-alpha.8871946-Glow.zip



Source:
http://megapov.inetart.net/povrayunofficial_mac/uberpov_downloads/UberPOV-1.37.1.1-alpha.8871946-Glow-source.zip



Discusion:
http://news.povray.org/povray.unofficial.patches/thread/%3C5829de00%241%40news.povray.org%3E/



Yvo

Simple sample scene:

// Persistence Of Vision Ray Tracer Scene Description File
// -------------------------------------------------------
// File: @(#)glowlits.pov
// Description: Here the glow effects are coupled with light sources.
// Features demonstrated: glow
// Creation Date: $ 27 Sep 2000, 16:08:45 $
// Last modified: $ 14 Jun 2004, 22:36:41 $
// Author: Chris Huff
//
// -w320 -h240 +a0.3

#version unofficial patch 3.7;

global_settings {
	assumed_gamma 1.0
}

camera {
	location <-5, 6,-18>
	up y*image_height right x*image_width
	look_at < 0, 1.5, 0>
	angle 45
}

//Types:
#local Float = 0;
#local Vector = < 0, 0, 0>;
#local Color = color rgb < 0, 0, 0>;

#macro SRand(RS) (rand(RS)*2 - 1) #end
#macro RRand(RS, Min, Max) (rand(RS)*(Max-Min) + Min) #end
#macro Clamp(V, Min, Max) (min(Max, max(Min, V))) #end
#macro Range(V, Rmn, Rmx) (V*(Rmx-Rmn) + Rmn) #end
#macro RClamp(V, Rmn, Rmx, Min, Max) (Clamp(Range(V, Rmn, Rmx), Min, Max)) #end

#local RsA = seed(574647);

#local J = Float;
#local J = 0;
#while(J<52)
	light_source {
		< SRand(RsA)*8, rand(RsA)*4, SRand(RsA)*8>
		color rgb 0.045*< rand(RsA), rand(RsA), rand(RsA)>
		glow { size rand(RsA)*0.65 type int(rand(RsA))}
		fade_distance 4 fade_power 2
	}
	 #declare  J = J + 1;
#end

box {
	<-15, 0,-10>, < 15, 0, 10>
	pigment {checker color rgb 0.05, color rgb 1}
	finish {
		reflection {0.5, 0.75 metallic }
		diffuse 0.25 ambient 0
	}
}

sphere {
	< 0, 2, 0>, 2
	pigment {rgb 1}
	finish {
		reflection { 0.5, 0.85 metallic }
		diffuse 0.15 ambient 0
	}
}



-------------------------------------------------------------------------------------------


POV-Ray 3.7 unofficial: http://megapov.inetart.net/povrayunofficial_mac/
UberPOV Mac: http://megapov.inetart.net/uberpov_mac/index.html#Mac
MegaPOV: http://megapov.inetart.net
E-mail: yvo(DOT)s(AT)gmx.net


Post a reply to this message

From: Yvo Smellenbergh
Subject: Re: UberPOV wit MegaPOV glows for mac available
Date: 14 Nov 2016 12:48:24
Message: <5829f8e8@news.povray.org>
On 2016-11-14 17:46:23 +0000, Yvo Smellenbergh said:
FYI:
only direct links, not listed on the website until out of beta :-)

Yvo


> UberPOV with MegaPOV glows is now available for Macintosh:
> 
> Executable OSX 10.7.4 and later, 64bit only
>
http://megapov.inetart.net/povrayunofficial_mac/uberpov_downloads/UberPOV-1.37.1.1-alpha.8871946-Glow.zip

> 
> 
> Source:
>
http://megapov.inetart.net/povrayunofficial_mac/uberpov_downloads/UberPOV-1.37.1.1-alpha.8871946-Glow-source.zip

> 
> 
> Discusion:
>
http://news.povray.org/povray.unofficial.patches/thread/%3C5829de00%241%40news.povray.org%3E/

> 
> 
> Yvo
> 
> Simple sample scene:
> 
> // Persistence Of Vision Ray Tracer Scene Description File
> // -------------------------------------------------------
> // File: @(#)glowlits.pov
> // Description: Here the glow effects are coupled with light sources.
> // Features demonstrated: glow
> // Creation Date: $ 27 Sep 2000, 16:08:45 $
> // Last modified: $ 14 Jun 2004, 22:36:41 $
> // Author: Chris Huff
> //
> // -w320 -h240 +a0.3
> 
> #version unofficial patch 3.7;
> 
> global_settings {
> 	assumed_gamma 1.0
> }
> 
> camera {
> 	location <-5, 6,-18>
> 	up y*image_height right x*image_width
> 	look_at < 0, 1.5, 0>
> 	angle 45
> }
> 
> //Types:
> #local Float = 0;
> #local Vector = < 0, 0, 0>;
> #local Color = color rgb < 0, 0, 0>;
> 
> #macro SRand(RS) (rand(RS)*2 - 1) #end
> #macro RRand(RS, Min, Max) (rand(RS)*(Max-Min) + Min) #end
> #macro Clamp(V, Min, Max) (min(Max, max(Min, V))) #end
> #macro Range(V, Rmn, Rmx) (V*(Rmx-Rmn) + Rmn) #end
> #macro RClamp(V, Rmn, Rmx, Min, Max) (Clamp(Range(V, Rmn, Rmx), Min, Max)) #end
> 
> #local RsA = seed(574647);
> 
> #local J = Float;
> #local J = 0;
> #while(J<52)
> 	light_source {
> 		< SRand(RsA)*8, rand(RsA)*4, SRand(RsA)*8>
> 		color rgb 0.045*< rand(RsA), rand(RsA), rand(RsA)>
> 		glow { size rand(RsA)*0.65 type int(rand(RsA))}
> 		fade_distance 4 fade_power 2
> 	}
> 	 #declare  J = J + 1;
> #end
> 
> box {
> 	<-15, 0,-10>, < 15, 0, 10>
> 	pigment {checker color rgb 0.05, color rgb 1}
> 	finish {
> 		reflection {0.5, 0.75 metallic }
> 		diffuse 0.25 ambient 0
> 	}
> }
> 
> sphere {
> 	< 0, 2, 0>, 2
> 	pigment {rgb 1}
> 	finish {
> 		reflection { 0.5, 0.85 metallic }
> 		diffuse 0.15 ambient 0
> 	}
> }
> 
> 
> 
>
-------------------------------------------------------------------------------------------

> 
> POV-Ray 3.7 unofficial: http://megapov.inetart.net/povrayunofficial_mac/
> UberPOV Mac: http://megapov.inetart.net/uberpov_mac/index.html#Mac
> MegaPOV: http://megapov.inetart.net
> E-mail: yvo(DOT)s(AT)gmx.net


--
Yvo

-- 
-------------------------------------------------------------------------------------------


POV-Ray 3.7 unofficial: http://megapov.inetart.net/povrayunofficial_mac/
UberPOV Mac: http://megapov.inetart.net/uberpov_mac/index.html#Mac
MegaPOV: http://megapov.inetart.net
E-mail: yvo(DOT)s(AT)gmx.net


Post a reply to this message

From: clipka
Subject: Re: UberPOV wit MegaPOV glows for mac available
Date: 14 Nov 2016 12:54:05
Message: <5829fa3d$1@news.povray.org>
Am 14.11.2016 um 18:46 schrieb E-mailyvo s gmx.net:
> UberPOV with MegaPOV glows is now available for Macintosh:

You're quick :)


Post a reply to this message

From: Yvo Smellenbergh
Subject: Re: UberPOV wit MegaPOV glows for mac available
Date: 14 Nov 2016 13:40:52
Message: <582a0534@news.povray.org>
On 2016-11-14 17:54:04 +0000, clipka said:

> Am 14.11.2016 um 18:46 schrieb E-mailyvo s gmx.net:
>> UberPOV with MegaPOV glows is now available for Macintosh:
> 
> You're quick :)

Yes, I know you.... no guarantee that it will compile tomorrow ;-)

Thanks for adding this patch!

--
Yvo

-- 
-------------------------------------------------------------------------------------------


POV-Ray 3.7 unofficial: http://megapov.inetart.net/povrayunofficial_mac/
UberPOV Mac: http://megapov.inetart.net/uberpov_mac/index.html#Mac
MegaPOV: http://megapov.inetart.net
E-mail: yvo(DOT)s(AT)gmx.net


Post a reply to this message

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