]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.g3d/src/org/simantics/g3d/math/Ray.java
10d8f4abe84ddc20c53c359012863ebb3e2bc1fa
[simantics/3d.git] / org.simantics.g3d / src / org / simantics / g3d / math / Ray.java
1 package org.simantics.g3d.math;\r
2 \r
3 import javax.vecmath.Point3d;\r
4 import javax.vecmath.Vector3d;\r
5 \r
6 public class Ray {\r
7         public Point3d pos;\r
8         public Vector3d dir;\r
9         \r
10         public Ray(Point3d pos, Vector3d dir) {\r
11                 this.pos = pos;\r
12                 this.dir = dir;\r
13         }\r
14 \r
15 }\r