Since you have just 23 numbers I would just use solution 1. Another similar solution that's more suitable if you have a huge range (Say thousands or millions) but still a short number of excluded numbers is to trade execution speed vs memory use and instead of keeping a table of the included values keep a table of the…
oh great. when I worked at Subway while in high school, there was a specific combo that would give a total of $6.66. The customers would be shocked and order a cookie or extra drink just so it wouldn't be that number. The same thing would happen at the movie theater. Now all those reciepts I saved are worthless. I was…
Hi guys and gals! I put together a short summary of video game industry layoffs so far in the year 2013, which countries and cities were most affected, etc. Here's the link: http://www.jonjones.com/2013/08/15/game-layoffs-2013-so-far-by-the-numbers/ And here's the data from the link: I created and maintain an extremely…
I usually do even numbers, though odd is fine if it works. I find even numbered cylinders easier to tie into other pieces of geo, for example the arm into a shoulder. Like you said, you also get the benefit of symmetry. However, sometimes an odd number might be just enough to round out the silhouette and the next highest…
I need help trying to input number's into the coding here is what I'm trying to do: If you press the number one it will choose a weapon. If you press the number one again it will choose another weapon. The cycle continues as you keep pressing the number one. If you guys could show me what code could make this happen that…
Transfers position of vertices from target to source, even with different number of vertices. Works in object space or world space. Useful for aligning parts of character meshes, matching deformations, or synchronizing mesh segments. Demo video https://youtu.be/GZXPjzqsw8c Screenshots Download…
Hi, Let's say I
got 20 doors, and every door should have a number (texture). I was
thinking about a material only solution with "flipbook" and "world
space offset", but I don't want to have 20 material instances, just to set the offset value every time with aparameter. And I don't
think the offset position of the mesh and…
Rock band Rage Against The Machine has won the most competitive battle in years for the Christmas number one. The band's single, Killing In The Name, sold 500,000 downloads beating X Factor winner Joe McElderry's The Climb by 50,000 copies to clinch the top spot. Their success followed a Facebook campaign designed to…
Considering that I am supposed to make real-time game characters, I did some research on how rigging was done for them. I found catwoman model with its rig ripped from one of the batman games. Number of bones in around 100. Considering nature of batman games I find this impressive given the number of enemies on screen at…
Hey all, I am in need of a little bit of math advice. I have a need to take a really big number (10+ digits) and to get specific digits out of it. From a separate site, I saw this : a=1298 first2 = floor(a/100) second2 = rem(a, 100) in an example for trying to get the digits of the number 1298. But I'm not sure how this…