IRC log for #brlcad on 20080402

00:07.29*** join/#brlcad andrecastelo (n=chatzill@189.71.62.248)
00:07.35andrecastelogood evening everyone
00:08.14brlcadhowdy andrecastelo
00:08.37andrecastelohey brlcad
00:08.57andrecastelodid you review the application again ?
00:10.49brlcadandrecastelo: not yet in detail
00:10.53yukonbobwaves in
00:11.06brlcadgoing through them one at a time, will get back around to yours eventually
00:11.28andrecastelobrlcad: ok, ok ;)
00:34.15CIA-33BRL-CAD: 03brlcad * r30608 10/brlcad/trunk/src/libbu/fgets.c: ws
00:46.43*** join/#brlcad spike__ (i=[U2FsdGV@centaur.acm.jhu.edu)
01:36.36CIA-33BRL-CAD: 03brlcad * r30609 10/brlcad/trunk/src/mged/attach.c:
01:36.36CIA-33BRL-CAD: rework the initial classic console mode attach prompt to use bu_vls_gets so that
01:36.36CIA-33BRL-CAD: we don't have to worry about end of line issues. also, trim whitespace so it
01:36.36CIA-33BRL-CAD: matches more easily and inform the user which selection is being used to affirm
01:36.39CIA-33BRL-CAD: their selection.
01:36.56CIA-33BRL-CAD: 03brlcad * r30610 10/brlcad/trunk/src/mged/attach.c: loopy
02:13.49CIA-33BRL-CAD: 03brlcad * r30612 10/brlcad/trunk/NEWS:
02:13.49CIA-33BRL-CAD: improved mged's classic mode 'attach' display manager selection, particularly on
02:13.49CIA-33BRL-CAD: windows where it was getting the carriage return in the input string and not
02:13.49CIA-33BRL-CAD: getting a successful match. Now it drops the EOL character(s) and trims
02:13.50CIA-33BRL-CAD: whitespace on comparison, and affirms to the user which option was selected.
02:39.37*** join/#brlcad iraytrace (n=iraytrac@c-67-172-239-24.hsd1.ut.comcast.net)
03:47.52*** join/#brlcad CIA-33 (n=CIA@208.69.182.149)
04:33.12pacman87i've noticed BRL-CAD uses a bit of magic for the rt code
04:34.03pacman87#define RT_SOLTAB_MAGIC0x92bfcde0
04:34.44pacman87and i was wondering if the use of magic was documented somewhere
04:47.42brlcadpacman87: mmm.. probably
04:47.45brlcadbut just as easy to explain
04:48.47brlcadmagic numbers are simply special type identifiers -- the value of which usually has no meaningful significance other than being an identifier for that data
04:50.11brlcadthe magic numbers are used throughout the code for pervasive detection of memory corruption -- they are almost always the first bytes in a structure so if something overruns an array, it's easily detected
04:50.55brlcadlikewise if data is marshalled between different systems (whether through network or file I/O or some other cast mechanism), it is used to validate that types are what they should be
04:51.38brlcadwhat it all basically amounts to is that you just define a magic number for any new struct, and anywhere that struct is passed into a function, you check it
04:52.07brlcadso the instant there is any corruption, it's caught and processing can/should halt
05:06.09hippieindamakin8hello guys
05:06.36brlcadhowdy
05:11.27pacman87brlcad: thanks for the info
05:11.31brlcadnp
05:11.57pacman87is there a list of all the defined magic numbers, or will i have to search through them all to get a unique one?
05:13.44pacman87also, i noticed the primitive list has a (half) hyperboloid of two sheets, but not a hyperboloid of one sheet
05:15.13brlcadalmost all of them are hex-encoded char strings for the struct name
05:16.01pacman87would it cause trouble it my magic number isn't unique?
05:16.49brlcaddepends, but yes possibly
05:17.07brlcadthey are declared in their respective headers
05:17.34pacman87i suppose it's easier to grep for the hex string i want, than trying to gather a list of all the ones in use
05:19.17pacman87re: hyperboloid of one sheet, if i code that up in the next week, would that be an acceptable patch?
05:19.35pacman87i've already done all the math for the shot() method
05:19.53pacman87s/method/function
05:20.04pacman87too used to java terminology
05:20.51brlcadgrep MAGIC include/*.h | grep define | grep -v CK
05:20.56brlcadthat'll get you most of them
05:21.08brlcadand you can see many of them tell you what their hex is
05:21.22brlcad(they all should .. but some aren't alnum
05:22.42brlcadhm, hyperboloid of one sheet ...
05:22.59pacman87i just though it was odd to have one but not both
05:23.19brlcadyou mean you've seen src/librt/g_ehy.c
05:23.32pacman87yeah
05:24.40pacman87two sheets: x^2 + y^2 - z^2 + 1 = 0
05:24.50pacman87one sheet: x^2 + y^2 - z^2 - 1 = 0
05:25.23pacman87flips which side of the asymptotic cone the surface is on
05:25.49brlcadnods
05:26.37brlcadi'm just wondering if there's a way to better encapsulate that into the existing ehy without breaking format
05:28.08brlcadotherwise, a hot damn cool idea for a patch -- very impressive
05:28.35pacman87the math on this one is (relatively) easy
05:29.12pacman87so i can learn all the structs first
05:29.52brlcadand you have a nearly exact example to follow..
05:30.05brlcadstill very impressive though
05:30.24brlcad(assuming you get it to work) :)
05:31.26brlcadMarkowski would be proud
05:31.49pacman87i might need a bit more guidance integrating the new primitive, though
05:32.06pacman87as i haven't really looked at that part of the code yet
05:32.31pacman87but i'll ask when i get there (and have read the code) so i can understand what you're talking about
05:32.51pacman87Markowski is...?
05:33.28pacman87Michael J. Markowski, author of g_ehy.c
05:34.02pacman87though he remembered reading that name somewhere
05:36.11brlcadyep, he implemented a couple of the primitives
05:36.16brlcadhe's still around
05:37.02brlcadi'll be sure to tell him you thought he was dumb for not doing the one-sheets :)
05:39.38brlcadforewarning, the one tricky part is going to be that you have to deal with multihit, which ehy doesn't have to deal with
05:45.41pacman87should be a max of 4
05:46.03pacman87both bases, plus two sides
05:49.01*** join/#brlcad clock_ (n=clock@217-162-111-235.dclient.hispeed.ch)
05:50.05brlcadyeah, two segments
06:14.45*** join/#brlcad gedex (n=gedex@125.160.102.249)
06:17.30brlcadwaves g'night
06:18.16pacman87good idea, brlcad
06:29.18*** join/#brlcad gede1 (n=gedex@125.160.103.109)
06:37.09brlcadhello gede1
06:45.15*** join/#brlcad gede2 (n=gedex@125.160.99.10)
06:45.23brlcadyikes
06:47.05brlcadwanders off for real
06:56.22gede2brlcad: i've frozen app in my student dashboard, should i post new one?
06:59.05*** join/#brlcad gedex (n=gedex@125.160.96.100)
07:11.44*** join/#brlcad clock_ (n=clock@zux221-122-143.adsl.green.ch)
07:13.50*** join/#brlcad gede1 (n=gedex@125.160.98.205)
07:13.57*** part/#brlcad gede1 (n=gedex@125.160.98.205)
09:00.51*** join/#brlcad d_rossberg (n=rossberg@bz.bzflag.bz)
09:37.36*** join/#brlcad mafm (n=mafm@elnet-111.lip.pt)
09:40.14mafmhi
09:51.27brlcadhowdy
09:52.08mafmisn't a bit to early for you? (or alternatively, too late)
09:52.32brlcadyep
09:54.20hippieindamakin8havent u slept brlcad ?
09:54.31brlcadmeh
09:58.01*** join/#brlcad gedex (n=gedex@222.124.185.169)
09:58.34brlcadgedex: no, you really shouldn't -- should talk to a mentor and get them to unfreeze it
09:59.13gedexit's fine to submit new one with same title?
10:00.16brlcadgedex: NO, you really shouldn't -- ...
10:00.32gedexso, i need to talk to  Sean
10:00.43brlcadto a mentor
10:00.55brlcadany mentor
10:01.42brlcadiff everything seems right, then maybe resubmitting might solve things, but don't just create more work for your convenience please :)
10:02.02brlcadwhich app is yours?
10:02.28gedexWeb-based solid geometry model repository
10:02.40gedexi would to create drupal's modul
10:02.53gedexerr.. *module
10:03.48brlcadinstead of responding with a comment, you should respond by editing the submission
10:04.29mafmwhat's the freezing problem? :)
10:04.44mafmstudents should be able to edit applications until the new deadline
10:04.49gedexthe ineligible status made me couldn't edit the form
10:05.16brlcadmafm: some cannot edit until a mentor comments
10:06.15brlcadgedex: ooooh, you're Akeda I take it
10:06.30gedexyes :)
10:06.47brlcadtitle is identical to another -- you needed to be talking with us regardless
10:06.53gedexbrldcad is Sean?
10:07.15brlcadstatus restored, try now
10:07.19mafmhuh? don't know, but I can edit all of mine... and I thought that the mentor comments to enable application modifications were only after the deadline
10:07.43gedexbrlcad: thx Sean
10:08.42brlcadgedex: word of caution -- that's an exceptionally popular topic for some reason
10:09.01brlcadyou really might want to reconsider what exactly you propose :)
10:12.11brlcadand will need to be very detailed and well articulated regardless, that much is certain given there are like 6 really strong candidates already with only 2-4 slots being allowed
10:12.47brlcadmore than 6 received, but about that many are already "really good" before we even get to rankings
10:12.53gedexbrldcad: i just updated my app
10:13.57gedexi want to know what drupal's version used on main site?
10:14.17gedex5.x or 6.x
10:15.15brlcadgiven one of them just came out and hardly any of the modules are converted yet, which do you think
10:17.32brlcadgedex: I've seen it and it's better, but I can already tell you that it really needs a lot more detail, and it needs to tie to BRL-CAD better (you haven't identified how/what in brl-cad it should be using)
10:18.17gedexbrlcad: ok, thx
10:18.47brlcadto give you an idea of the level of effort being seen, not to put any of the other submitters on the spot -- here's a pretty good example of appropriate detail: http://brlcad.org/wiki/Libpg_:_A_parametrics/constraint_library
10:19.37brlcadanother good example for a different project: http://my.bzflag.org/w/User:Jude-
10:22.55brlcadlooks forward to seeing updates and wanders off back to emacs
10:26.56CIA-33BRL-CAD: 03brlcad * r30613 10/brlcad/trunk/ (197 files in 197 dirs): ignore generated Makefile.in and Makefile files
10:34.29CIA-33BRL-CAD: 03brlcad * r30614 10/brlcad/trunk/ (197 files in 197 dirs): bah, revert previous propsetting .. need additive, not override
10:52.34hippieindamakin8hey brlcad Mr.Rossberg says he needs a bit more detail in my application can u tell me where exactly ?
10:56.12brlcadnope
10:56.31brlcadthat's for you to figure out
10:56.36hippieindamakin8:P
10:56.39brlcadand I agree with him
10:56.45hippieindamakin8sure
11:01.07d_rossberghippieindamakin8: i added a question to my comment, you could e.g answer this question ;)
11:01.21hippieindamakin8ya i am replying to that :)
11:24.58CIA-33BRL-CAD: 03brlcad * r30615 10/brlcad/trunk/ (198 files in 198 dirs): much better .. ignore all the generated Makefile, Makefile.in, .deps, and .libs stuff
11:30.42*** join/#brlcad gede1 (n=gedex@222.124.185.169)
11:50.30clock_hippieindamakin8: does your nick mean hippie in the machine?
11:59.10*** join/#brlcad gedex (n=gedex@222.124.185.169)
12:01.33hippieindamakin8clock_ it is actually hippie in the making 87
13:04.33*** join/#brlcad Elperion (n=Bary@p5487750A.dip.t-dialin.net)
13:12.24*** join/#brlcad andrecastelo (n=chatzill@189.71.62.248)
13:12.49*** part/#brlcad gedex (n=gedex@222.124.185.169)
13:13.09andrecastelohey everyone
13:13.11andrecastelohey mafm
13:13.45hippieindamakin8hey andrecastelo
13:13.56andrecastelohey hippieindamakin8
13:20.06mafmhi andrecastelo
13:35.18CIA-33BRL-CAD: 03bob1961 * r30616 10/brlcad/trunk/src/librt/wdb_comb_std.c: Found another case where Tcl_AppendResult was not being used correctly (i.e. last argument must be a null char *).
14:08.31andrecastelobrlcad: hey, you there??
14:17.51brlcadnope
14:18.23brlcad~ask
14:18.23ibotQuestions in the channel should be specific, informative, complete, concise, and on-topic.  Don't ask if you can ask a question first.  Don't ask if a person is there, just ask what you intended to ask them.  Better questions more frequently yield better answers.  We are all here voluntarily or against our will.
15:13.31CIA-33BRL-CAD: 03brlcad * r30617 10/brlcad/trunk/ (include/dg.h src/proc-db/tire.c): folks need to set up their subversion config file with auto-props entries. set the mime-types and eol-style
15:17.24CIA-33BRL-CAD: 03brlcad * r30618 10/brlcad/trunk/include/dg.h: fix header
15:26.23*** join/#brlcad PrezKennedy (i=Matthew@74.86.45.130)
15:28.08*** join/#brlcad andrecastelo (n=chatzill@189.71.62.248)
15:36.05andrecastelobrlcad: sorry about earlier, i had to go afk and didn't respond..
15:36.46andrecasteloit's about the "center point" patch - it is necessary to implement it in the gui, right ?
15:48.33*** join/#brlcad surya__ (n=surya@203.200.95.130)
15:48.46surya__hey guys
16:11.24CIA-33BRL-CAD: 03starseeker * r30619 10/brlcad/trunk/src/proc-db/tire.c: Appears to be a problem with rotation - added testing routines for equations at various points, easier generation of test cases.
17:16.55mafmbye all
17:50.55yukonbob<PROTECTED>
18:00.11yukonbobwaves in
18:00.14yukonbobhello, cadheads
18:00.44pacman87hi yukonbob
18:26.28brlcadhowdy yukonbobby
18:27.17yukonbobwhat's shaking, gentlemen?
18:27.29yukonbobpeeks into the GSoC site to see what's happening there...
18:28.26*** join/#brlcad minute-web (n=minuteel@cpc4-flit1-0-0-cust283.lutn.cable.ntl.com)
18:28.49brlcadoh, trying to actually catch up on some code
18:29.52yukonbobheh -- nothing new there...
18:30.40*** join/#brlcad Elperion (n=Bary@p5487750A.dip.t-dialin.net)
18:31.38yukonbobbrlcad: re: gsoc converstations -- where are those occuring?
18:32.03yukonbobis currently at MentorHome->ApplicationList
18:33.00brlcadyukonbob: they haven't started yet
18:33.05*** join/#brlcad MinuteElectron (i=5207211c@silentflame/member/pdpc.base.minuteelectron)
18:33.07brlcadotherwise, in the private comments for starters
18:34.46yukonbobalright -- cool
18:56.42brlcadand a lot of what we're saying could/should be said here :)
18:58.39brlcadso yeah, if someone wants a bug to work on for their patch -- see yukonbob  :)
18:58.52brlcadhe's got a good one that shouldn't be too hard
19:01.35yukonbob:)
19:01.57yukonbobbarks "Get your bugs! Get your bugs!! Bugs here!"
19:02.37yukonbobputs bug-cart away, heads out for coffee.
19:02.41yukonbobbbs
19:14.37*** join/#brlcad SWPadnos (n=Me@emc/developer/SWPadnos) [NETSPLIT VICTIM]
19:18.15yukonbobreturns
19:18.24*** join/#brlcad CIA-25 (n=CIA@208.69.182.149)
19:30.06*** join/#brlcad spike_ (i=[U2FsdGV@centaur.acm.jhu.edu)
19:30.11spike_hola
19:35.06brlcadciao spike_
19:35.47spike_:-D glad they gave that extension, gives me time to write a patch
19:36.06spike_last week was a bad week homework wise for me
19:37.09brlcadnods
19:39.11PrezKennedybrlcad, im going to vegas next week!!
19:39.38brlcadi heard, vegas baby
19:50.01PrezKennedyi heard my bro might be there this summer
19:52.23*** join/#brlcad andrecastelo (n=chatzill@189.71.62.248)
19:52.38PrezKennedyyou gonna have him program up a storm brlcad? make him wish he had gone into art instead? ;)
20:08.04brlcadPrezKennedy: hopefully :)
20:08.15brlcadif he ever calls that is, still in his hands
20:09.23PrezKennedyim talking to him on google talk, maybe he'll jump in here
20:14.10*** join/#brlcad Stephen (n=Stephen@resnet-236-6.resnet.UMBC.EDU)
20:15.59Stephenso I heard you like mudkips
20:16.45brlcadhowdy Stephen
20:16.50StephenHowdy Sean
20:17.14brlcadmudkip ponies
20:17.20Stephenheh
20:59.09*** join/#brlcad docelic (n=docelic@77.237.112.178)
21:09.26yukonbobrebuilds 7.10.4
21:43.43*** join/#brlcad docelic (n=docelic@77.237.112.178) [NETSPLIT VICTIM]
21:43.43*** join/#brlcad Stephen (n=Stephen@resnet-236-6.resnet.UMBC.EDU) [NETSPLIT VICTIM]
21:43.43*** join/#brlcad hippieindamakin8 (n=hippiein@203.200.95.130) [NETSPLIT VICTIM]
21:43.43*** join/#brlcad archivist (n=archivis@host81-149-119-172.in-addr.btopenworld.com) [NETSPLIT VICTIM]
21:44.24``Erik*whew* finally all caught up
21:44.29``Erikaaannnnndddd, it's about time to start getting ready to leave :D
21:47.51yukonbobsmiles
21:48.16``Erikyou fools sure generate a lot of line noise in a mere 5 days :D
21:52.32``Erikok, later kids :)
21:52.42pacman87bye Erik
21:52.49andrecastelocya Erik
21:58.29andrecastelohey brlcad... could you give me some pointers on how to implement that center point patch ??
22:19.41yukonbobq: wrt to the "image and signal processing" of BRL-CAD (as described on front page of site) -- what are examples of these?
22:23.01brlcadandrecastelo: you mean center of presented area or something else?
22:23.35brlcadrun rtarea and see src/rt/viewarea.c
22:23.44andrecastelobrlcad: yes, the center of a presented area.. the mathematics involved are rather trivial (median point)
22:23.45andrecastelook thanks
22:24.38*** join/#brlcad docelic (n=docelic@77.237.112.178)
22:24.38*** join/#brlcad Stephen (n=Stephen@resnet-236-6.resnet.UMBC.EDU)
22:24.38*** join/#brlcad hippieindamakin8 (n=hippiein@203.200.95.130)
22:24.38*** join/#brlcad archivist (n=archivis@host81-149-119-172.in-addr.btopenworld.com)
22:24.44brlcadyukonbob: there are over a hundred image and signal processing tools
22:25.18brlcadlow/high pass filters, convolutions, transforms, etc
22:25.30yukonbobinteresting -- /me can't imagine how those work wrt visual data, or interrogating geometry, but recognizes all those from audio work...
22:26.19yukonbobcan you tell me where one my want to convolve two signals w/i the BRL-CAD framework?
22:26.40brlcadyukonbob: think of basic image filters in the gimp or photoshop
22:26.47brlcadsimilar processing
22:26.57yukonbobnods -- alright :)
22:27.44brlcadsome are 1D, some 2D
22:28.18yukonbobone more q: regarding the above -- does that type of processing typically have professional/scientific use, and if "yes", what might such a use be?
22:31.16*** join/#brlcad andrecastelo_ (n=chatzill@189.71.70.118)
22:48.16brlcadyukonbob: individually, I'm not sure I'd characterize them that way altough some of them probably have been
22:49.18brlcadcollectively, though, they are tied together to perform more complex opertations like performing noise reduction or feature extraction
22:51.05brlcadsrc/sig and src/util have many of them
22:56.05``Erikwonders how many are also used on non-optical data O.o
22:56.27*** join/#brlcad Stephen (n=Stephen@resnet-236-6.resnet.UMBC.EDU)
22:57.04``Eriklike one of the things BRL-CAD is used for is radio signal propogation (imagine every cell tower is a 'light source', now do a photon map or path trace run (or straight radio) to see where in a scene you get reception)
22:57.18``Erikor radar, or ...
23:14.11``Erikso, uh
23:14.23``ErikI'm looking at this mentor dashboard thingymajigger, and, uh,shtuff
23:14.32brlcadmmhmm?
23:15.41``Erikhard to find shit, they layed it out silly :D
23:15.53brlcadyeah
23:15.55``Erikdo they provide guidance on pre-submission comments? or is that project specific?
23:16.02brlcadit's generally accepted that it sucks in many many ways
23:17.21brlcadbut there's really not much that can be done about it
23:17.22``Eriklike, is "dawn, dude, you can't call it libpg, that's postgres", or is that an irrelevent technical detail?
23:17.22brlcadI was pretty vocal last year, but it's really got to go through their machinery/infrastructure and just has features added as needed (and this year the web dev got in an accident so he's out for the rest of the year)
23:17.29brlcadcomments are project specific
23:17.29``Erikeck, hope he's doing ok
23:17.54brlcadif you want to ask him that, go for it
23:17.59*** join/#brlcad iraytrace (n=iraytrac@cocoa.sci.utah.edu)
23:18.02brlcadthough I believe postgres is actually libpq
23:18.04``Erikok, sooo, url for mentor guidance?
23:18.08``Erikoi, leebert
23:18.11``Erikmebbe
23:18.28iraytraceevening
23:19.24brlcadi have ranking criteria written up, but ranking doesn't begin until apps close
23:19.34``Eriksomeone marked on -10
23:19.36``Erikone
23:20.01brlcadso the point now is really just to critique them, have them explain things -- there's a section for mentor-private comments too
23:20.02``Eriksees a lot of libpg and a lot of libpq for postgresql stuff
23:20.07``Erikok
23:20.16brlcadyeah, I think all thouse libpg references are typos
23:20.25brlcadpostgres docs say libpq
23:20.43brlcadthe -10 is a bug
23:20.57``Erikmebbe
23:20.59brlcadthat one was marked invalid (as it had no content) then restored
23:21.18brlcadcan't fix it till later
23:25.35``Erikit looks like all the extras like to call themselves "libpg-xxx"
23:25.47``Eriklibpg-java libpg-tcl libpg-perl
23:26.22``Erikterse names lend themselves to conflicts and confusion, 'sall I'm sayin' :D
23:27.14brlcadyeah, I know bout the wrappers
23:27.30brlcadfor the lib itself though -- I actually couldn't find a non-petty conflict
23:27.51brlcadotherwise, suggest something better :)
23:29.29``Erikheh
23:29.52``Erikdon't dare me, dude, I'll be shooting my mouth off about libbrlutil libbrlmath, libbrlrt :D *duck*
23:30.26iraytrace?rl?
23:30.52brlcadmeant for the parametric equations library :P
23:31.01``Erikyeah, but if I start, I'll keep going :D
23:31.11brlcadotherwise, highly bikeshed at rather irrelevant at this point :)
23:31.16``Erikayup
23:31.42``ErikI haven't looked in depth at any applications, so I can't make the nuclear power plant, just bitch about the color
23:33.09``Erikmetropolis in c++? hrm, would require a c++ compiler for liboptical, but we already inflict that on librt :/
23:34.12``Erikthis raspberry hefeweizen is, uh, kinda gross
23:35.07brlcadc++ is already a forgone requirement for brep now
23:35.17iraytraceUm, librt requires a c++ compiler?  What has been going on this year?
23:35.21brlcadMLT wouldn't necessarily use optical
23:35.49iraytraceOK, MLT, I was worried it was Metropolis, the movie.
23:36.24``Erikwhich metropolis movie? fritz lang's is a damn good flick
23:37.05``Eriklibrt has a .cpp file for talking to OpenNURBS, iraytrace
23:39.11``Erikoh, the rhino to .g converter "seems to work", but segs on rt somewhere in opennurbs, I threw out the idea of writing a little program to load itout of the .g and print out all the information possible so we can look over it for something we know to be 'weird'
23:39.15``Erikfyi
23:39.58iraytraceYeah, the Fritz Lang one.
23:40.31yukonbob``Erik: re: non-optical data (ie: radio signal) -- that's interesting, because one of the things I was thinking about that's probably not a "traditional" BRL-CAD application is using it to generate an impulse-response for a room, for use with audio applications... the impulse response could be used to convolve a raw audio signal, and the results would be as if that original raw signal were "played" in the "room
23:40.47yukonbob" that the original impulse response were generated from...
23:41.27yukonbobcamera == listener
23:41.31``Erikthat'd be interesting, but it could be challenging to handle constructive and destructive interference from reflected waves
23:41.46yukonboblight location == location of impulse that we'll map
23:42.14yukonbobno matter how constructrive/destrcutive is handled, it'd probably be "interesting", I guess...
23:42.33iraytraceThere's been a fair bit of work on "wave tracing" out of UNC the last year or so if you're interested in sound propagation.
23:42.51yukonbobNorth Carolina?
23:43.03``Erikyeah, they're a bigger name in raytracing and graphics
23:43.35iraytraceYes Univ. North Carolina Chapel Hill.
23:44.21iraytraceThough their talent pool has gotten decimated like everyone else recently.
23:45.23``Erikinvidia (misspelling intentional) vs intel, wee
23:45.32brlcad``Erik: the 3dm-g isn't done, just started for that matter
23:46.21``ErikI know, but it "does something" and freaks rt out, so looking at the something it does seems like the next step to my uninitiated arse :D

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