 | | Re: Rotating through a four-bit nibble
|
|
(...) What are you optimizing for? Code clarity? Code speed? Code length? There are (to my knowledge) no truly pretty solutions to this. I would tend to go with: int rotbits(int input, int numbits, int offset, int rotdist) { int mask = (~((~0) << (...) (21 years ago, 20-Sep-05, to lugnet.robotics)
|
| |
 | | Re: Mating Game - moc up
|
|
(...) I thought the whole concept stemmed from the of a "cooperative" game. Without inter-bot communication, the cooperative idea is kind of lost. (...) going on.... (...) I get the mental image of a group of dogs all trying to sniff each other. It (...) (21 years ago, 20-Sep-05, to lugnet.org.ca.rtltoronto)
|
| |
 | | Re: CaroML development
|
|
One learns things everyday! I got curious why i have more than 3000 Classic Space parts but Peerom.com says i can't build a simple 20 parts classic space MOC. The MOC is basically 4 Balloon wheels, a Black Plate 6 x 2, a Yellow space minifig, a (...) (21 years ago, 20-Sep-05, to lugnet.cad.dev)
|
| |
 | | Re: It's back! Long-Lost Jetpack Element Now Being Produced...
|
|
(...) ok i undrestand that this is cool news but it has apsolutly nothing to do with trains. trim the news groups!!!...!!! ondrew (21 years ago, 20-Sep-05, to lugnet.trains, lugnet.general, FTX)
|
| |
 | | Re: Mating Game - moc up
|
|
(...) you can STILL build a multi sided input bot. or just 2 whiskers...or some creative thinking, and you SHOULD be able to find the hole. (...) see, thats were the game allows for you do make it as EASY as possible to find a mate. make your HITW (...) (21 years ago, 20-Sep-05, to lugnet.org.ca.rtltoronto)
|
| |
 | | Re: Train Factory palette
|
|
In lugnet.trains, Jake McKee wrote: SNIP (...) Can I put in a plea for 45-degree, 2 x 2 inverse double convex corner slopes in brown? (3676.dat) Don't forget 2 x 8 45-degree slopes in various colors, too. Useful for quick cowcatchers... 2x2 - 4x4 (...) (21 years ago, 20-Sep-05, to lugnet.trains, FTX)
|
| |
 | | Re: It's back! Long-Lost Jetpack Element Now Being Produced...
|
|
(...) This is very cool- I can't wait to get my hands on a few! (2 URLs) Tony Hafner (URL) www.hafhead.com> (21 years ago, 20-Sep-05, to lugnet.trains, lugnet.general, FTX)
|
| |
 | | Re: UDITE ! UDITE !! oops .. LEGGETE! LEGGETE !!!
|
|
(...) finalmente qualcuno con idee chiare!!! piccolo di statura (da cui il sopranome "Bonsai") ma grande di mente e largo di vedute. w. ps. dimenticavo, ovviamente si dice [DAS] Lego xchè [DAS] Spielzeug é neutro! (21 years ago, 20-Sep-05, to lugnet.org.it.itlug)
|
| |
 | | Re: Mating Game - moc up
|
|
(...) Geese -- that's what I said way back! (...) How to find a moving target?? (...) Pretty unlikely to work. It extremely difficult just to get a coordinated hand off when one knows it is delivering and one knows it is receiving/ (...) Scoring (...) (21 years ago, 20-Sep-05, to lugnet.org.ca.rtltoronto)
|
| |
 | | Re: Rotating through a four-bit nibble
|
|
(...) One way to do this might be by using multiplication and division. Temp = (Input & 0000 0000 0011 0000)*4 + (Input & 0000 0000 1100 0000)/4 Output = (Input & 1111 1111 0000 1111) & (Temp & 0000 0000 1111 0000) Although I imagine that can be (...) (21 years ago, 20-Sep-05, to lugnet.robotics)
|