[ create a new paste ] login | about

Maik_Beckmann

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by Maik_Beckmann:

C++, pasted on Jun 26:
1
2
3
4
struct Vector {
  Vector() : x(0), y(0), z(0) { }  
  float x,y,z;
};
...
view (13 lines)