|
|
hi,
ingo <ing### [at] tagpovrayorg> wrote:
> The following parses forever:
>
> #declare fig = dictionary {
> ["head"] : <0, 0, 0>,
> ["nose"] : <1, 0, 0>,
> ["atlas"] : <0,-1, 0>,
> ["tail"] : <0,-3, 0>
> }
>
>
> #declare bone = dictionary {
> ["face"] : array{fig["head"], fig["nose"]},
> ["neck"] : array{fig["head"], fig["atlas"]},
> ["spine"] : array{fig["atlas"], fig["tail"]}
> }
>
> ingo
if you write:
#declare bone = dictionary {
["face"] : array [2] {fig["head"], fig["nose"]},
["neck"] : array [2] {fig["head"], fig["atlas"]},
["spine"] : array [2] {fig["atlas"], fig["tail"]}
}
it'll work.
regards, jr.
Post a reply to this message
|
|