Skip to content

Instantly share code, notes, and snippets.

@dslmeinte
Last active July 17, 2017 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dslmeinte/37783be232f7da4d1ff1f63cfd22f32f to your computer and use it in GitHub Desktop.
Save dslmeinte/37783be232f7da4d1ff1f63cfd22f32f to your computer and use it in GitHub Desktop.
Model of a directed graph (pseudo-TS-code)
export class Point { x: number; y: number; }
export class Vertex { id: number; position: Point; toIds: number[]; }
export class Model { vertices: Vertex[]; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment