3D - 2

I need a program that will take a digit, 1 through 10 and place it in a 3d grid?

Anyone have any ideas? Just need it to plot a large number in 3d . It would end up with a 3d model, the shape of which would depend on the digits in sequence from first to last. For example, a 1 would be placed, say at coordinates 4,2,4. Two would be 3,2,5, and so on.

Public Comments

  1. No sweat... Visual Basic Dim f(10,10,10) as Long' make this Double if the numbers are really large) Then you can address cell in that 3-D grid. f(4, 2, 4) = 1: f(3, 2, 5) = 2 The algorithm by which you populate the grid is up to you. So is the way you display it. I'd use Excel. With a little ingenuity, you might even be able to display it in 3-D...
  2. make sure to remember that 10 isn't a digit: it's two digits, 1 and 0.
Powered by Yahoo! Answers