Skip to content

Instantly share code, notes, and snippets.

@aslushnikov
Created April 22, 2012 15:03
Show Gist options
  • Save aslushnikov/2464507 to your computer and use it in GitHub Desktop.
Save aslushnikov/2464507 to your computer and use it in GitHub Desktop.
1 // a geometry vertice
2 struct Vertice {
3 1: double x,
4 2: double y,
5 3: double z
6 }
7
8 // geometry itself
9 struct Geometry {
10 1: list<Vertice> vertices
11 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment