Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. [[0 0 0 0 0]
  2. [0 0 0 0 0]
  3. [0 0 0 0 0]
  4. [0 0 0 0 0]
  5. [0 0 0 0 0]]
  6.  
  7. [[0 0 1 0 0]
  8. [0 0 0 0 0]
  9. [0 0 0 0 1]
  10. [0 1 0 0 0]
  11. [0 0 0 0 0]]
  12.  
  13. [[0 0 1 0 0]
  14. [0 0 1 1 0]
  15. [0 1 1 1 1]
  16. [0 1 1 0 0]
  17. [0 0 0 0 0]]
  18.  
  19. arr = np.zeros([5,5])
  20. shapePoints = [[0,2], [2,4], [3,1]]
  21. valueToFill = 1
  22. arr = fillShape(arr, shapePoints, valueToFill)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement