Guest User

Untitled

a guest
Jan 22nd, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import math
  2. math.cos(math.radians(1))
  3.  
  4. math.sqrt(x)
  5.  
  6. point_1 = [0, 0, 0]
  7. point_2 = [4, 4, 4]
  8.  
  9. point_3 = [-4, -4, -4]
  10. distance = sqtr( ((0-4)(0-4)) + ((0-4)(0-4)) + ((0-4)*(0-4)) )
Add Comment
Please, Sign In to add comment