POV-Ray : Newsgroups : povray.windows : Crash... Server Time
28 Jun 2024 22:09:20 EDT (-0400)
  Crash... (Message 1 to 3 of 3)  
From: Andrew Coppin
Subject: Crash...
Date: 21 Apr 2003 16:16:40
Message: <3ea451a8@news.povray.org>
The following short scene causes POV-Ray to give me an "internal error"
warning. I would imagine the problem is the exp() function, but surely a
simple high-valued result shouldn't crash the whole of POV-Ray... I would
have expected to just get some kind of "number overflow" message instead...

POV-Ray 3.5.icl.win32
Windows XP (Home), Mobile AMD Athlon +1400 CPU, 256MB RAM, etc.

--- Scene ---
global_settings
{
  noise_generator 3
}

camera
{
  location <0, 0, -500>
  direction z
  look_at <0, 0, 0>
}

light_source {<0, 0, -500>, colour rgb 1}

#declare TBase =
texture
{
  pigment {colour rgb 0.5}
  finish {ambient 0 specular 0.5}
}

#declare TDrip =
texture
{
  pigment {colour rgb <0.95, 0.82, 0.71>}
  finish {ambient 0 specular 0.2}
}

#declare RND = seed(31415);

object
{
  blob
  {
    #declare Angle = 0;
    #while (Angle<360)
      sphere {<sin(radians(Angle))*exp(Angle),
cos(radians(Angle))*exp(Angle), Angle>, 10, strength 7}

      #declare Angle = Angle + 5;
    #end
    #undef Angle

    threshold 1
  }
  texture {TBase}
}
--- End Scene ---


Post a reply to this message

From: Ken
Subject: Re: Crash...
Date: 21 Apr 2003 20:47:54
Message: <3EA490E5.7D8246@pacbell.net>
Andrew Coppin wrote:
> 
> The following short scene causes POV-Ray to give me an "internal error"
> warning. I would imagine the problem is the exp() function, but surely a
> simple high-valued result shouldn't crash the whole of POV-Ray... I would
> have expected to just get some kind of "number overflow" message instead...
> 
> POV-Ray 3.5.icl.win32
> Windows XP (Home), Mobile AMD Athlon +1400 CPU, 256MB RAM, etc.

Yep, crashes rather violently. I suggest you post it as a bug report in the
bug reports group and, if you like, you can mention that I confirmed it so
that the bug report moderator will accept it.

-- 
Ken Tyler


Post a reply to this message

From: Andrew Coppin
Subject: Re: Crash...
Date: 27 Apr 2003 04:59:37
Message: <3eab9bf9@news.povray.org>
> Yep, crashes rather violently. I suggest you post it as a bug report in
the
> bug reports group and, if you like, you can mention that I confirmed it so
> that the bug report moderator will accept it.
>
> --
> Ken Tyler

Thanks; will do...
Andrew.


Post a reply to this message

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