POV-Ray : Newsgroups : povray.beta-test : Semi-official development build v3.7.1-alpha.8004333 : Re: Semi-official development build v3.7.1-alpha.8004333 Server Time
20 Apr 2024 01:39:45 EDT (-0400)
  Re: Semi-official development build v3.7.1-alpha.8004333  
From: Tor Olav Kristensen
Date: 2 Apr 2015 15:20:00
Message: <web.551d951b842ddb803b28a4800@news.povray.org>
clipka <ano### [at] anonymousorg> wrote:
> This build should fix the issues reported about the tuple-style assignment:
>
> https://github.com/c-lipka/povray/releases/tag/v3.7.1-alpha.8004333

There still seems to be problems. Please try this:

// POV-Ray: v 3.7.1-alpha.8004333.unofficial.msvc10(?)
// Binary: pvengine64.exe
// OS: Windows 8.1 (64 bits)
// CPU: AMD A8-6410

#declare A = array[3];

/*
#declare A[0] = 1;
#declare A[1] = A[0];

// "Parse Error: Attempted to redefine float identifier as array identifier."
#declare A[2] = array[1] { 1 };

#declare E = A;
*/

// "Unfortunately, it appears that a memory access violation at address
// 0x00007FFBE6F3262B has caused this unofficial POV-Ray build to crash."
#declare (A[0], A[1], A[2], E) = (1, A[0], array[1] { 1 }, A);

--
Tor Olav
http://subcube.com


Post a reply to this message

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