source: java/main/src/main/java/com/framsticks/util/Orientation.java @ 77

Last change on this file since 77 was 77, checked in by psniegowski, 11 years ago

Add new java codebase.

File size: 296 bytes
Line 
1package com.framsticks.util;
2
3/**
4 * @author Piotr Sniegowski
5 */
6public class Orientation {
7    public final Point3d x;
8    public final Point3d y;
9    public final Point3d z;
10
11    public Orientation() {
12        x = new Point3d();
13        y = new Point3d();
14        z = new Point3d();
15    }
16
17
18}
Note: See TracBrowser for help on using the repository browser.