Guest User

Untitled

a guest
Nov 17th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. // ITK
  2. #include "itkIndex.h"
  3.  
  4. int main(int, char* [] )
  5. {
  6.  
  7. itk::Index<2> index = {{5, -3}};
  8.  
  9. std::cout << index;
  10.  
  11. return 0;
  12. }
Add Comment
Please, Sign In to add comment