Advertisement
Guest User

Untitled

a guest
May 4th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. typedef struct {
  2. float x;
  3. float y;
  4. } point;
  5.  
  6. typedef struct {
  7. int width;
  8. int height;
  9. point *points[];
  10. } matrix;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement