1 package net.sf.josceleton.core.api.entity;
2
3 /**
4 * @since 0.1
5 */
6 public interface Coordinate {
7
8 /**
9 * @return X coordinate of joint in interval [0.0, 1.0].
10 * @since 0.1
11 */
12 float x();
13
14 /**
15 * @return Y coordinate of joint in interval [0.0, 1.0].
16 * @since 0.1
17 */
18 float y();
19
20 /**
21 * @return Z coordinate of joint in interval [0.0, 7.0].
22 * @since 0.1
23 */
24 float z();
25
26 }