|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Hi... my first post here... but anyway, to get right down to the question.
I'm trying to use a sphere sweep, but I get a strange error message that I
don't understand. Any help?
Attempt to malloc zero size block (File: sphsweep.cpp Line: 1613).
File NewShip line 202
here's the code
sphere_sweep {
cubic_spline
3,
<0,0,0>,3
<5,5,0>,3
<10,0,0>,3
pigment {Green}
}
should I have more spheres for a cubic_spline?
Sean
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Sean Sabbage" <sab### [at] btinternetcom> wrote in message
news:BAEC1363.23E22%sab### [at] btinternetcom...
> Hi... my first post here... but anyway, to get right down to the
question.
> I'm trying to use a sphere sweep, but I get a strange error message
that I
> don't understand. Any help?
>
> Attempt to malloc zero size block (File: sphsweep.cpp Line: 1613).
>
> File NewShip line 202
>
> here's the code
>
> sphere_sweep {
> cubic_spline
> 3,
> <0,0,0>,3
> <5,5,0>,3
> <10,0,0>,3
> pigment {Green}
> }
>
> should I have more spheres for a cubic_spline?
Hi, I'm not sure what the above error actually means, but I think
yes, you should specify 4 spheres for a cubic_spline, and 4 lines of
parameters, here's a golden worm-like thingy:
sphere_sweep {
cubic_spline
4,
<-3, 4, -3>, .03
<-5, 0, 0>, 0
<-1, 0, 0>, .3
<-2, 5, 0>, 2
translate <2.5, 1, 0>
scale 3
texture {T_Gold_2A}}
~Steve~
>
> Sean
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Sean Sabbage <sab### [at] btinternetcom> wrote in message
news:BAEC1363.23E22%sab### [at] btinternetcom...
> Attempt to malloc zero size block (File: sphsweep.cpp Line: 1613).
(snip)
> sphere_sweep {
> cubic_spline
> 3,
> <0,0,0>,3
> <5,5,0>,3
> <10,0,0>,3
> pigment {Green}
> }
>
> should I have more spheres for a cubic_spline?
Yes.
This works fine...
sphere_sweep {
cubic_spline
5,
<-1,0,0>,3
<0,0,0>,3
<5,5,0>,3
<10,0,0>,3
<11,0,0>,3
pigment {Green}
}
RG
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
St. wrote:
>"Sean Sabbage" <sab### [at] btinternetcom> wrote in message
>news:BAEC1363.23E22%sab### [at] btinternetcom...
>> Attempt to malloc zero size block (File: sphsweep.cpp Line: 1613).
>>
> Hi, I'm not sure what the above error actually means, but I think
>yes, you should specify 4 spheres for a cubic_spline, and 4 lines of
>parameters, here's a golden worm-like thingy:
>
It means there's a (minor) bug in the code. POVray failed to recognize that
the cubic_spline was short by a required argument, did the math anyway, came
up with a spline of 0 length, attempted to allocate 0 bytes of memory to
store information about the 0-length path... and then did nothing else.
The warning message is not a standard C warning message, so somebody in The
Team
was clever enough to put that warning into an allocation routine or macro so
that errors like that would be caught and fixed, hopefully before doing any
real damage... (knock on wood...;))
--Chris
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
|
|