| 00:27.02 | *** join/#brlcad elite01 (n=omg@unaffiliated/elite01) | |
| 01:30.51 | *** join/#brlcad andrecastelo (n=chatzill@189.71.20.11) | |
| 02:05.06 | *** join/#brlcad r4ck_Work (n=vrduhube@201-26-126-69.dsl.telesp.net.br) | |
| 02:51.30 | *** join/#brlcad pacman87 (i=500@resnet-46-40.dorm.utexas.edu) | |
| 03:19.24 | *** join/#brlcad BigAToo (n=BigAToo@pool-96-230-124-199.sbndin.btas.verizon.net) | |
| 05:35.43 | *** join/#brlcad Administrator__ (n=chatzill@220-135-161-73.HINET-IP.hinet.net) | |
| 06:13.44 | *** join/#brlcad BigAToo (n=BigAToo@pool-96-230-124-199.sbndin.btas.verizon.net) | |
| 06:48.44 | *** join/#brlcad _sushi_ (n=_sushi_@77-58-239-202.dclient.hispeed.ch) | |
| 07:55.06 | *** join/#brlcad IriX64 (n=IriX64@bas2-sudbury98-1177679958.dsl.bell.ca) | |
| 08:14.31 | *** join/#brlcad mafm (n=mafm@223.Red-83-49-86.dynamicIP.rima-tde.net) | |
| 08:35.09 | *** join/#brlcad elite01 (n=omg@unaffiliated/elite01) | |
| 08:49.07 | *** join/#brlcad hippieindamakin8 (n=hippiein@202.3.77.38) | |
| 09:48.31 | hippieindamakin8 | is just back from a small vacation and waves at brlcad madant_ pacman87 and madant_ |
| 09:48.36 | hippieindamakin8 | *mafm |
| 11:20.40 | *** join/#brlcad PrezKennedy (i=Matthew@whitecalf.net) | |
| 11:28.57 | *** join/#brlcad Nem (n=daemonne@192.12.117.87.donpac.ru) | |
| 11:45.35 | *** join/#brlcad samrose (n=samrose@c-24-11-214-181.hsd1.mi.comcast.net) | |
| 11:52.00 | *** join/#brlcad PrezKennedyII (i=Matthew@whitecalf.net) | |
| 12:38.01 | *** join/#brlcad hippieindamakin8 (n=hippiein@202.3.77.38) | |
| 14:55.47 | *** join/#brlcad BigAToo (n=BigAToo@96.230.124.199) | |
| 15:11.38 | madant_ | hippieindamakin8: howdy :) small vacations are always nice :D |
| 15:12.01 | hippieindamakin8 | hey madant_ |
| 15:48.18 | *** part/#brlcad Nem (n=daemonne@192.12.117.87.donpac.ru) | |
| 16:10.10 | *** join/#brlcad IronNem (n=daemonne@192.12.117.87.donpac.ru) | |
| 16:13.47 | *** join/#brlcad Elrohir (n=kvirc@p5B14CE74.dip.t-dialin.net) | |
| 16:36.01 | *** part/#brlcad IronNem (n=daemonne@192.12.117.87.donpac.ru) | |
| 17:27.31 | *** join/#brlcad BigAToo (n=BigAToo@pool-96-230-124-199.sbndin.btas.verizon.net) | |
| 17:28.22 | *** join/#brlcad hippieindamakin8 (n=hippiein@202.3.77.38) | |
| 17:50.15 | brlcad | howdy hippieindamakin8 |
| 17:50.26 | hippieindamakin8 | hey brlcad |
| 17:50.51 | hippieindamakin8 | i was just wondering how would i test the routine |
| 17:51.06 | brlcad | which routine? |
| 17:51.40 | hippieindamakin8 | the bot to nmg |
| 17:54.41 | hippieindamakin8 | http://dpaste.com/42430/ |
| 17:54.59 | brlcad | ahh, cool |
| 17:55.19 | hippieindamakin8 | any pointers ? |
| 17:55.20 | brlcad | probably the easiest is to just write a little driver test application |
| 17:56.13 | brlcad | that function takes an rt_bot_internal, which is obtained through an rt_db_internal, which can be obtained by doing a db_lookup() iirc |
| 17:56.21 | brlcad | hunts for an example |
| 17:56.41 | hippieindamakin8 | ohk |
| 18:00.11 | brlcad | okay, looks like madant actually has an nice little test for libpc work |
| 18:00.18 | brlcad | look in src/util/pc_test.c |
| 18:01.07 | brlcad | it's doing a couple things you don't need, but much of it applies |
| 18:01.27 | hippieindamakin8 | ohk thanks :) |
| 18:01.55 | brlcad | you'll call db_open() instead of wdb_open() (first is for read/write, the second is write-only) |
| 18:01.57 | hippieindamakin8 | btw i would want to start working on this problem implement a routine to convert an NMG NURBS object to the newer |
| 18:01.57 | hippieindamakin8 | <PROTECTED> |
| 18:01.57 | hippieindamakin8 | <PROTECTED> |
| 18:02.36 | brlcad | after you get a directory pointer from db_lookup(), you'll pass that dp to rt_db_get_internal() |
| 18:03.27 | hippieindamakin8 | checks that out |
| 18:04.26 | brlcad | once you have that internal pointer (ip) ... |
| 18:04.52 | brlcad | struct rt_bot_internal *bot_ip = (struct rt_bot_internal *)ip->idb_ptr; RT_BOT_CK_MAGIC(bot_ip); |
| 18:05.11 | brlcad | that'll convert it to a bot and validate it |
| 18:06.25 | brlcad | rather, validate that it's actually a 'bot' object, not validate the bot data itself |
| 18:08.04 | hippieindamakin8 | brlcad, i ll get back to u in few moments |
| 18:23.00 | ``Erik | ponders the cost of maid service O.o |
| 18:36.41 | brlcad | about 25-50/hr |
| 18:51.47 | starseeker | poolio: I don't suppose there's a good tutorial on setting up dzen and conky anywhere? |
| 18:52.07 | starseeker | is looking at a rather imposing process to get this working "right" |
| 19:04.34 | *** join/#brlcad hippieindamakin8 (n=hippiein@202.3.77.38) | |
| 19:17.29 | *** join/#brlcad elena (n=elena@89.136.118.141) | |
| 19:25.36 | *** join/#brlcad madant_ (n=d@117.196.128.182) | |
| 20:36.43 | *** join/#brlcad jdoliner (n=jdoliner@98.227.157.38) | |
| 21:38.34 | ``Erik | holy oh-wow |
| 21:39.03 | ``Erik | someone figured out how to make emacs not induce rsi... mapping ctrl and meta to... footpedals. |
| 21:39.07 | ``Erik | http://bc.tech.coop/blog/060131.html |
| 22:14.41 | Axman6 | ha |
| 22:34.35 | *** join/#brlcad BigAToo (n=BigAToo@pool-96-230-124-199.sbndin.btas.verizon.net) | |
| 23:33.32 | yukonbob | hello, cadheads |