2 * Copyright 2006 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.wamblee.gps.geometry;
19 import java.io.Serializable;
22 * Coordinates in some 3-dimensional coordinate system.
24 public class Coordinates implements Serializable {
31 * Constructs the coordinates.
32 * @param aX1 First coordinate.
33 * @param aX2 Second coordinate.
34 * @param aX3 Third coordinate.
36 public Coordinates(double aX1, double aX2, double aX3) {
42 public double getX1() {
46 public double getX2() {
50 public double getX3() {
54 public double getX(int i) {
60 throw new IllegalArgumentException("coordinate out of range " + i);
64 * @see java.lang.Object#toString()
67 public String toString() {
68 return "(" + getX1() + ", " + getX2() + ", " + getX3() + ")";
71 public Coordinates add(Coordinates aC) {
72 return new Coordinates(_x1 + aC._x1, _x2 + aC._x2, _x3 + aC._x3);
75 public Coordinates subtract(Coordinates aC) {
76 return new Coordinates(_x1 - aC._x1, _x2 - aC._x2, _x3 - aC._x3);
79 public double innerProduct(Coordinates aC) {
80 return _x1 * aC._x1 + _x2 * aC._x2 + _x3 * aC._x3;
83 public Coordinates outerProduct(Coordinates aC) {
84 return new Coordinates(
85 _x2*aC._x3 - _x3*aC._x2,
86 -_x1*aC._x3 + _x3*aC._x1,
87 _x1*aC._x2 - _x2*aC._x1
91 public double norm() {
92 return Math.sqrt(innerProduct(this));
95 public Coordinates scale(double aMultiplier) {
96 return new Coordinates(_x1*aMultiplier, _x2*aMultiplier, _x3*aMultiplier);
99 public Coordinates normalize() {
100 return scale(1.0/norm());