Example #1
0
  public Vector3 getPosition(Vector3 posVariable) {
    Vector3 result = new Vector3();

    result.x = xTransform.apply(posVariable);
    result.y = yTransform.apply(posVariable);
    result.z = zTransform.apply(posVariable);

    return result;
  }
Example #2
0
 public void set(WyckoffPosition p) {
   xTransform.set(p.xTransform);
   yTransform.set(p.yTransform);
   zTransform.set(p.zTransform);
 }