|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I get the following error:
Possible Parce Error: There are more than the maximum supported components in a
blob.
Fatal error in parser: Uncategorized error.
Render failed
What is the maximum size?
I create an array and initialize some of the elements.
I scan the array and add a blob sphere{} component for some of the initialized
array elements.
I also #write to a file the blob component, later I can choose to include the
file.
array [480][60][348], array and blob works
array [720][90][522], array works, blob fails
Win vista 64
8Gb memory
Suggestions?
Stephen S
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"StephenS" <nomail@nomail> wrote:
> I get the following error:
>
> Possible Parce Error: There are more than the maximum supported components in a
> blob.
> Fatal error in parser: Uncategorized error.
> Render failed
>
> What is the maximum size?
>
> I create an array and initialize some of the elements.
> I scan the array and add a blob sphere{} component for some of the initialized
> array elements.
> I also #write to a file the blob component, later I can choose to include the
> file.
>
> array [480][60][348], array and blob works
> array [720][90][522], array works, blob fails
>
> Win vista 64
> 8Gb memory
>
> Suggestions?
>
> Stephen S
POV-Ray 3.7.0.rc7.msvc10.win64
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"StephenS" <nomail@nomail> wrote:
> I get the following error:
>
> Possible Parce Error: There are more than the maximum supported components in a
> blob.
> Fatal error in parser: Uncategorized error.
> Render failed
>
> What is the maximum size?
>
> I create an array and initialize some of the elements.
> I scan the array and add a blob sphere{} component for some of the initialized
> array elements.
> I also #write to a file the blob component, later I can choose to include the
> file.
>
> array [480][60][348], array and blob works
> array [720][90][522], array works, blob fails
>
> Win vista 64
> 8Gb memory
>
> Suggestions?
>
> Stephen S
Looking further:
The include file has 1439767 lines of entery, starting with
blob{threshold .2
sphere{ <0.0140553,-2.98281,0.000647176>,0.231891,.008}
sphere{ <-0.00691917,-2.98312,0.0420482>,0.251227,.008}
....
Stephen S
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Am 21.08.2013 23:24, schrieb StephenS:
> I get the following error:
>
> Possible Parce Error: There are more than the maximum supported components in a
> blob.
> Fatal error in parser: Uncategorized error.
> Render failed
>
> What is the maximum size?
The maximum number of internal(!) components per blob is 1,000,000; note
that while each spherical component is represented by a single internal
component, each cylindrical component is actually represented by three
components internally (the cylinder itself + the two end hemispheres).
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
clipka <ano### [at] anonymousorg> wrote:
> Am 21.08.2013 23:24, schrieb StephenS:
> > I get the following error:
> >
> > Possible Parce Error: There are more than the maximum supported components in a
> > blob.
> > Fatal error in parser: Uncategorized error.
> > Render failed
> >
> > What is the maximum size?
>
> The maximum number of internal(!) components per blob is 1,000,000; note
> that while each spherical component is represented by a single internal
> component, each cylindrical component is actually represented by three
> components internally (the cylinder itself + the two end hemispheres).
Thank you.
I will limit the size of the initial array to start with, and work from there.
Stephen S
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |