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; }
public void set(WyckoffPosition p) { xTransform.set(p.xTransform); yTransform.set(p.yTransform); zTransform.set(p.zTransform); }