IRC log for #brlcad on 20110603

00:12.43*** join/#brlcad kunigami (~kunigami@loco-gw.ic.unicamp.br)
00:25.48*** join/#brlcad crazy_imp (~mj@a89-182-173-66.net-htp.de)
00:32.54*** join/#brlcad kunigami (~kunigami@loco-gw.ic.unicamp.br)
01:07.01crazy_impis it possible to extrude a face along a curve? (like the pipe solid, but with another shape)
02:23.53bhinesleydo you mean a revolve, like this: http://docs.autodesk.com/ACD/2010/ENU/AutoCAD%202010%20User%20Documentation/index.html?url=WS1a9193826455f5ffa23ce210c4a30acaf-540f.htm,topicNumber=d0e304250 ?
02:24.00bhinesleyif so, I believe the answer is no
02:28.13bhinesleyIt looks like someone attempted it: http://brlcad.org/wiki/User:Pacman87
02:28.26bhinesleyI do not see any indication that it was finished though
02:29.51bhinesleyand actually, what you asked for sounds more like a sweep than a revolve
02:31.19bhinesleylike this: http://docs.autodesk.com/ACD/2010/ENU/AutoCAD%202010%20User%20Documentation/index.html?url=WS1a9193826455f5ffa23ce210c4a30acaf-5303.htm,topicNumber=d0e319229
04:41.46bhinesleysighs peacefully
04:41.47bhinesleyAll that reading paid off, I'm finally getting somewhere with migrating/refactoring the man command
04:49.58bhinesleyShould Archer continue to use the MGED man pages for the time being?
05:03.51bhinesleyAlso, what do you guys think about adding a filter for the list of man pages, or perhaps just having it jump to a given letter of the alphabet on keypress? There are many commands on there, making it kind of a pain to navigate.
05:07.00CIA-61BRL-CAD: 0399.144.90.118 07http://brlcad.org * r2900 10/wiki/User:Bhinesley: /* Log */ modified today's entries
07:36.37*** join/#brlcad Stattrav (~Stattrav@111.93.134.142)
07:36.37*** join/#brlcad Stattrav (~Stattrav@unaffiliated/stattrav)
08:20.46crazy_impbhinesley: the sweep would allow more complex curves / paths, but the revolve would do the trick too with more (with some more segments)
08:34.58*** join/#brlcad mafm (~mafm@142.Red-81-34-12.dynamicIP.rima-tde.net)
10:42.40kunigamistarseeker: I never get replies from OSL list :) But thanks to Sean's email I've figured out the error! I'll update the news soon!
10:52.09*** join/#brlcad kunigami_ (~kunigami@loco-gw.ic.unicamp.br)
11:48.59*** join/#brlcad alex_joni (~alex_joni@emc/board-of-directors/alexjoni)
11:56.43*** join/#brlcad alex_joni (~alex_joni@emc/board-of-directors/alexjoni)
12:34.33starseekerhuh: http://www.askoh.com/stcad/index.html
13:00.24*** join/#brlcad mafm (~mafm@220.Red-88-22-160.staticIP.rima-tde.net)
13:16.46*** join/#brlcad mafm_ (~mafm@220.Red-88-22-160.staticIP.rima-tde.net)
14:33.58*** join/#brlcad Stattrav (~Stattrav@unaffiliated/stattrav)
14:36.34*** join/#brlcad epileg (~epileg@unaffiliated/epileg)
15:23.41*** join/#brlcad piksi (piksi@pi-xi.net)
15:48.50*** join/#brlcad Stattrav_ (~Stattrav@117.192.147.206)
17:05.21``Erikstarseeker: 7.20.0 is missing a lot of it's cmake stuff :/
17:08.11*** join/#brlcad Stattrav (~Stattrav@117.192.147.206)
17:08.12*** join/#brlcad Stattrav (~Stattrav@unaffiliated/stattrav)
17:39.41*** join/#brlcad kunigami (~kunigami@loco-gw.ic.unicamp.br)
17:48.15*** join/#brlcad kunigami1 (~kunigami@loco-gw.ic.unicamp.br)
18:03.29kunigamihi, does anyone know how to clear a flag on cmake? I did the following test: http://pastebin.mozilla.org/1241499
18:04.10kunigamibut when I run make VERBOSE=1, it seems that the -Werror flag is added even after I clean up CMAKE_CXX_FLAGS
18:11.29bhinesleytry --disable-strict or -DBRLCAD-ENABLE_STRICT=OFF
18:16.29bhinesleykunigami: probably the prior
18:29.41kunigamibhinesley: Actually I'd like to turn off these flags only when compiling part of the code. So I was wondering if I could do this within cmake files
18:33.36bhinesleyOh, gottcha.
18:45.03``Erikdon't think it's set up like that, but if you dig into the CMakeFiles directory, you'll find a file flags.make you can edit (it'll be overwritten if you change the CMakeLists.txt)
19:02.18kunigamiBut can't I add this to CMakeLists so that whenever I run cmake the generated Makefile does not contain those flags?
19:02.56kunigamiThat's because OSL headers raises warnings that are treated as error by BRL-CAD build, so I'm getting compilation errors
19:04.41kunigamiSo I'd like to temporarily turn off some of the flags (I think only -Werror is enough) and after linking to OSL I turn them on again
19:17.19``ErikI jabbed starseeker, he's the cmake guy
19:18.23starseekerkunigami: there is a way
19:18.40starseekerbut why not just turn off the strict flags?
19:19.22starseekerif you want to get more systematic...
19:19.24starseekerlooks it up
19:20.34starseekerok.
19:20.41starseekersrc/other/CMakeLists.txt is an example
19:21.17starseekerfor the specific directory and sub-directories, you can do add_definitions(-Wno-error) or something like that
19:21.26starseekerif you want to do it just for a single library...
19:22.32starseeker<PROTECTED>
19:22.40starseekerthat's probably what you're looking for
19:26.16``ErikNice. http://www.youtube.com/watch?v=sR2296df-bc  (short ringworld animation)
19:27.13*** join/#brlcad Stattrav (~Stattrav@117.192.147.206)
19:27.13*** join/#brlcad Stattrav (~Stattrav@unaffiliated/stattrav)
19:32.57CIA-61BRL-CAD: 03erikgreenwald * r44732 10/brlcad/trunk/src/proc-db/ringworld.c: add some size/mass notes
19:37.51CIA-61BRL-CAD: 03erikgreenwald * r44733 10/brlcad/trunk/src/libgcv/ (CMakeLists.txt Makefile.am bottess.c): start of the j3dbool style tesselator
19:42.47*** join/#brlcad archivist_emc (~archivist@host81-149-189-98.in-addr.btopenworld.com)
19:44.21CIA-61BRL-CAD: 03Trgjos 07http://brlcad.org * r0 10/wiki/Special:Log/upload: uploaded "[[Image:Cash-payday-advance.pdf]]"
19:51.12CIA-61BRL-CAD: 03Trgjos 07http://brlcad.org * r0 10/wiki/Special:Log/upload: uploaded "[[Image:5128.pdf]]"
20:28.01bhinesleystarseeker ``Erik: I'm moving the Manual Page Browser out of Archer/MGED and into a common script. Should this go in tclscripts/helpcomm.tcl, a new file tclscripts/man_browser.tcl, or somewhere else?
20:46.11kunigamistarseeker: thank you
20:47.32starseekerbhinesley: I'd vote for tclscripts/man_browser.tcl
21:07.42bhinesleyruns with it
21:16.05kunigamihmm I think that what is causing the compile error is the -pedantic flag. Adding -Wno-error is not resolving :(
21:17.13starseekertry -DBRLCAD-ENABLE_COMPILER_WARNINGS=OFF
21:20.49kunigamicool. it works well. thanks again
22:34.03*** join/#brlcad kunigami (~kunigami@201.53.197.251)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.