Created
January 15, 2012 20:44
-
-
Save hfaulds/1617145 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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