Advertisement
LJack2k

Sphere plotting slices

Sep 27th, 2015
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local component = require("component")
  2. local keyboard = require("keyboard")
  3. local shell = require("shell")
  4. local hologram = component.hologram
  5.  
  6. hologram.clear()
  7.  
  8. h = 24
  9. k = 17
  10. r = 12
  11. step = 1 -- not used
  12.  
  13.   for theta = 1, 360 do
  14.     x = h + r * math.cos(theta)
  15.     y = k + r * math.sin(theta)
  16.     --print("x: " .. x .. " y:" .. y)
  17.     hologram.set(x, y, h, 2)
  18.   end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement