Skip to content

Instantly share code, notes, and snippets.

@hfaulds
Created January 15, 2012 20:44
Show Gist options
  • Select an option

  • Save hfaulds/1617145 to your computer and use it in GitHub Desktop.

Select an option

Save hfaulds/1617145 to your computer and use it in GitHub Desktop.
package geometry;
public class Plane {
public final Vertex point;
public final Vertex normal;
public Plane(Vertex point, Vertex normal) {
this.point = point;
this.normal = normal;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment