|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
What I'd like to see is an allowed comma at the end of the last element in a list.
This would facilitate the populating of lists from within a loop. There's now the
need (AFAICT) a silly check for the last element to omit the comma.
Dan
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Dan Connelly <djc### [at] yahoocom> wrote:
> What I'd like to see is an allowed comma at the end of the last element in a list.
This would facilitate the populat
ing of lists from within a loop. There's now the need (AFAICT) a silly check for the
last element to omit the comma.
>
> Dan
Usually I workaround by adding the comma before the number, that way there is no
comma at the end of the list. This works usually because most items that I have
created that use lists (meshes, splines, polygons) have a float preceding the
list, usually the number of items conatined in the list.
-tgq
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Trevor G Quayle <Tin### [at] hotmailcom> wrote:
> [-- text/plain, encoding 8bit, charset: iso-8859-1, 14 lines --]
> Dan Connelly <djc### [at] yahoocom> wrote:
> > What I'd like to see is an allowed comma at the end of the last element in a list.
This would facilitate the populat
> ing of lists from within a loop. There's now the need (AFAICT) a silly check for
the last element to omit the comma.
> >
> > Dan
> Usually I workaround by adding the comma before the number, that way there is no
> comma at the end of the list. This works usually because most items that I have
> created that use lists (meshes, splines, polygons) have a float preceding the
> list, usually the number of items conatined in the list.
Also you could skip using commas completely. Just put your elements in
parentheses (to avoid ambiguity in situations like "2 -1") and you don't
need commas at all.
--
- Warp
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Warp <war### [at] tagpovrayorg> wrote:
> Trevor G Quayle <Tin### [at] hotmailcom> wrote:
> > [-- text/plain, encoding 8bit, charset: iso-8859-1, 14 lines --]
>
> > Dan Connelly <djc### [at] yahoocom> wrote:
> > > What I'd like to see is an allowed comma at the end of the last element in a
list. This would facilitate the pop
ulat
> > ing of lists from within a loop. There's now the need (AFAICT) a silly check for
the last element to omit the comm
a.
> > >
> > > Dan
>
> > Usually I workaround by adding the comma before the number, that way there is no
> > comma at the end of the list. This works usually because most items that I have
> > created that use lists (meshes, splines, polygons) have a float preceding the
> > list, usually the number of items conatined in the list.
>
> Also you could skip using commas completely. Just put your elements in
> parentheses (to avoid ambiguity in situations like "2 -1") and you don't
> need commas at all.
>
> --
> - Warp
Yes that may be better. I was unaware that I could skip the commas in those
types of items (I knew you could in primitives). Is this stated anywhere in
the docs explicitly or is one of those read between the lines to discover?
-tgq
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Trevor G Quayle <Tin### [at] hotmailcom> wrote:
> Yes that may be better. I was unaware that I could skip the commas in those
> types of items (I knew you could in primitives). Is this stated anywhere in
> the docs explicitly or is one of those read between the lines to discover?
I don't remember the docs well enough to say for sure, but I would say
it's more or less an undocumented feature.
--
- Warp
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |