plib-devel Mailing List for PLIB (Page 367)
Brought to you by:
sjbaker
You can subscribe to this list here.
2000 |
Jan
|
Feb
(80) |
Mar
(128) |
Apr
(111) |
May
(157) |
Jun
(70) |
Jul
(116) |
Aug
(465) |
Sep
(574) |
Oct
(325) |
Nov
(163) |
Dec
(182) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(167) |
Feb
(191) |
Mar
(319) |
Apr
(118) |
May
(252) |
Jun
(427) |
Jul
(187) |
Aug
(96) |
Sep
(219) |
Oct
(161) |
Nov
(109) |
Dec
(210) |
2002 |
Jan
(97) |
Feb
(80) |
Mar
(143) |
Apr
(234) |
May
(72) |
Jun
(246) |
Jul
(155) |
Aug
(280) |
Sep
(418) |
Oct
(81) |
Nov
(72) |
Dec
(88) |
2003 |
Jan
(59) |
Feb
(63) |
Mar
(33) |
Apr
(27) |
May
(87) |
Jun
(50) |
Jul
(97) |
Aug
(45) |
Sep
(35) |
Oct
(67) |
Nov
(78) |
Dec
(13) |
2004 |
Jan
(167) |
Feb
(144) |
Mar
(172) |
Apr
(93) |
May
(43) |
Jun
(7) |
Jul
(27) |
Aug
(36) |
Sep
(48) |
Oct
(54) |
Nov
(5) |
Dec
(44) |
2005 |
Jan
(53) |
Feb
(36) |
Mar
(13) |
Apr
(3) |
May
(19) |
Jun
|
Jul
(49) |
Aug
(39) |
Sep
(8) |
Oct
(8) |
Nov
(51) |
Dec
(23) |
2006 |
Jan
(26) |
Feb
(5) |
Mar
(26) |
Apr
(26) |
May
(52) |
Jun
(36) |
Jul
(8) |
Aug
(12) |
Sep
(6) |
Oct
(75) |
Nov
(34) |
Dec
(25) |
2007 |
Jan
(46) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(7) |
Jul
(2) |
Aug
|
Sep
(40) |
Oct
(9) |
Nov
(3) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
(26) |
Apr
|
May
|
Jun
(2) |
Jul
(4) |
Aug
(6) |
Sep
|
Oct
|
Nov
(5) |
Dec
(2) |
2009 |
Jan
(63) |
Feb
(4) |
Mar
(12) |
Apr
|
May
(5) |
Jun
(1) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
(14) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
(2) |
Feb
(1) |
Mar
(2) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(5) |
2012 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
(2) |
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Steve B. <sjb...@ai...> - 2000-02-15 23:31:55
|
Wolfram Kuss wrote: > > Hi, > > I have got a compile problem in file ssgSimpleState.cxx. The four > lines > > specular_colour = src -> specular_colour ; > emission_colour = src -> emission_colour ; > ambient_colour = src -> ambient_colour ; > diffuse_colour = src -> diffuse_colour ; > > dont compile under MSVC. The error > is > "=": The left operand has to be a L-Value. Wow! I'm amazed that compiles anywhere! It's fixed in the PLIB CVS archive. Those lines should be: sgCopyVec4 ( specular_colour, src -> specular_colour ) ; sgCopyVec4 ( emission_colour, src -> emission_colour ) ; sgCopyVec4 ( ambient_colour, src -> ambient_colour ) ; sgCopyVec4 ( diffuse_colour, src -> diffuse_colour ) ; Sorry! -- Steve Baker http://web2.airmail.net/sjbaker1 sjb...@ai... (home) http://www.woodsoup.org/~sbaker sj...@ht... (work) |
From: Christopher K. S. J. <cs...@qu...> - 2000-02-15 22:07:15
|
Dave McClurg wrote: > > is the vrml model loader working? i tried something quick, got no > errors, but didn't see the render output. just being lazy. is it > working before i debug that? > It depends on what you mean by "the" VRML loader. You might want to try: <URL:http://www.enteract.com/~cks/vrml/vmn-latest.tgz> It's alpha, but it's considerably more functional than the version that comes with plib. It only loads VRML97, and doesn't currently handle PROTO's (or scripting, etc, etc) Work has stalled pending some feedback that someone has an interest in using it. Warning: I haven't compiled it against the latest versions of plib. If you have problems, let me know and I should be able to get it compile-able without too much effort. -cks |
From: Dave M. <dp...@ef...> - 2000-02-15 16:24:16
|
>> is the vrml model loader working? >No - 'fraid not. ok. might take a look at that next. i need at least a vrml 1.0 loader. also, many 3d modelers have a vrml save which we need too. >> var/func naming conventions for plib? >I *thought* I'd been pretty consistant you were. just a few odd cases. thanks for the notes. >PLIB 1.1.11 has 'ssgLoad' and 'ssgSave' that use the file extension to >figure out which low level file format to use. nice. thanks --Dave |
From: <Va...@t-...> - 2000-02-15 15:43:41
|
"Vallevand, Mark K" wrote: > > Hmmm. I regularly compile PLIB with MSVC v6. I don't remember > this problem. It seems to compile right out of the box. I'll > check again at home tonight. I have version 1.1.9. IIRC 1.1.9 is quite old. > > I have got a compile problem in file ssgSimpleState.cxx. The four > > lines > > > > specular_colour = src -> specular_colour ; > > emission_colour = src -> emission_colour ; > > ambient_colour = src -> ambient_colour ; > > diffuse_colour = src -> diffuse_colour ; > > > > dont compile under MSVC. The error > > is > > "=": The left operand has to be a L-Value. > > > > specular_colour etc are member-variables of > > ssgSimpleState with type sgVec4. > > When I change the type in file ssg.h > > into SGfloat * then it compiles, but > > I see this as a kludge. > > However, I found no other solution :-(. I have never tried to compile that stuff, but I guess that you'd either need a sgCopyVec4 or make sure (through a cast) that you want to set the pointer to specular_colour/... to the pointer to src->specular_colour/... Just a thought. CU, Christian |
From: Vallevand, M. K <Mar...@UN...> - 2000-02-15 15:12:44
|
Hmmm. I regularly compile PLIB with MSVC v6. I don't remember this problem. It seems to compile right out of the box. I'll check again at home tonight. I have version 1.1.9. Regards. Mark K Vallevand ma...@rs... Outside of a dog, a book is man's best friend. Inside of a dog, its too dark to read. - Groucho > Hi, > > I have got a compile problem in file ssgSimpleState.cxx. The four > lines > > specular_colour = src -> specular_colour ; > emission_colour = src -> emission_colour ; > ambient_colour = src -> ambient_colour ; > diffuse_colour = src -> diffuse_colour ; > > dont compile under MSVC. The error > is > "=": The left operand has to be a L-Value. > > specular_colour etc are member-variables of > ssgSimpleState with type sgVec4. > When I change the type in file ssg.h > into SGfloat * then it compiles, but > I see this as a kludge. > However, I found no other solution :-(. > > Bye bye, > Wolfram Kuss. |
From: Wolfram K. <w_...@rz...> - 2000-02-15 13:16:49
|
Hi, I have got a compile problem in file ssgSimpleState.cxx. The four lines specular_colour = src -> specular_colour ; emission_colour = src -> emission_colour ; ambient_colour = src -> ambient_colour ; diffuse_colour = src -> diffuse_colour ; dont compile under MSVC. The error is "=": The left operand has to be a L-Value. specular_colour etc are member-variables of ssgSimpleState with type sgVec4. When I change the type in file ssg.h into SGfloat * then it compiles, but I see this as a kludge. However, I found no other solution :-(. Bye bye, Wolfram Kuss. |
From: Steve B. <sjb...@ai...> - 2000-02-15 07:58:26
|
Dave McClurg wrote: > is the vrml model loader working? No - 'fraid not. > var/func naming conventions for plib? i noticed a couple different > styles. what do you prefer steve? couldn't find it on the websites. > probably there somewhere. I *thought* I'd been pretty consistant, for public symbols in PLIB module 'XX' (where 'XX' is: SL, SSG, SG, PU, FNT): #define's, enum tags XX_ALL_CAPITALS functions/classes/structs/typedefs xxMixedCase For private symbols, I use all_lowercase unless they would pollute the name space - in which case I use a leading underscore _xxMixedCase You could probably find a few cases where I screwed up - often because a formerly private member had to become public - or vice-versa. > my current effort is ssgLoadASE. I'm thinking of writing a > ssgModelLoader class similar to ssgImageLoader so that you don't have to > call the specific load routine for the file. I beat you to it (sort of). PLIB 1.1.11 has 'ssgLoad' and 'ssgSave' that use the file extension to figure out which low level file format to use. > Also, that will let me > share some common code between the model loaders. hope that is ok. > anyone actively working on the loaders? I might do a little cleanup of > static arrays and error handling. I don't know of anyone working on the current loaders. -- Steve Baker http://web2.airmail.net/sjbaker1 sjb...@ai... (home) http://www.woodsoup.org/~sbaker sj...@ht... (work) |
From: Dave M. <dp...@ef...> - 2000-02-15 07:26:38
|
is the vrml model loader working? i tried something quick, got no errors, but didn't see the render output. just being lazy. is it working before i debug that? var/func naming conventions for plib? i noticed a couple different styles. what do you prefer steve? couldn't find it on the websites. probably there somewhere. my current effort is ssgLoadASE. I'm thinking of writing a ssgModelLoader class similar to ssgImageLoader so that you don't have to call the specific load routine for the file. Also, that will let me share some common code between the model loaders. hope that is ok. anyone actively working on the loaders? I might do a little cleanup of static arrays and error handling. --Dave |
From: Steve B. <sjb...@ai...> - 2000-02-15 06:32:01
|
Mailing List Move. ~~~~~~~~~~~~~~~~~~ The Tux_AQFH and PLIB mailing lists are moving to the SourceForge servers. I have re-subscribed everyone who was subscribed to the following lists: pli...@wo... pli...@wo... pli...@wo... tux...@wo... tux...@wo... tux...@wo... To the corresponding new lists: pli...@li... pli...@li... pli...@li... tux...@li... tux...@li... tux...@li... (Notice that there is no longer an underscore in tuxaqfh - that's due to a bug in the SourceForge software). To post to the list, just email to the lists above. The 'announce' lists are heavily moderated (by me) - so they'll basically only contain major announcements. To subscribe, unsubscribe, switch to digest-only mode or visit the (currently empty!) archives, go to: http://lists.sourceforge.net/mailman/listinfo/plib-devel http://lists.sourceforge.net/mailman/listinfo/plib-users http://lists.sourceforge.net/mailman/listinfo/plib-announce http://lists.sourceforge.net/mailman/listinfo/tuxaqfh-devel http://lists.sourceforge.net/mailman/listinfo/tuxaqfh-users http://lists.sourceforge.net/mailman/listinfo/tuxaqfh-announce My next step is to relocate the PLIB and Tux_AQFH web sites to SourceForge - at which point, all this information will be available from the web site. Sorry for the incovenience. Steve. -- Steve Baker http://web2.airmail.net/sjbaker1 sjb...@ai... (home) http://www.woodsoup.org/~sbaker sj...@ht... (work) |