Package org.openjump.core.geomutils
Class MathVector
- java.lang.Object
-
- org.openjump.core.geomutils.MathVector
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class MathVector extends Object implements Cloneable, Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MathVector()
MathVector(double x, double y)
MathVector(org.locationtech.jts.geom.Coordinate coord)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MathVector
add(MathVector vector)
double
angleDeg(MathVector vector)
double
angleRad(MathVector vector)
Object
clone()
double
distance(MathVector vector)
double
dot(MathVector vector)
boolean
equals(Object object)
org.locationtech.jts.geom.Coordinate
getCoord()
double
magnitude()
MathVector
rotateDeg(double angle)
MathVector
rotateRad(double angle)
MathVector
scale(double number)
String
toString()
MathVector
unit()
MathVector
vectorBetween(MathVector vector)
double
x()
double
y()
-
-
-
Method Detail
-
x
public double x()
-
y
public double y()
-
getCoord
public org.locationtech.jts.geom.Coordinate getCoord()
-
magnitude
public double magnitude()
-
add
public MathVector add(MathVector vector)
-
scale
public MathVector scale(double number)
-
unit
public MathVector unit()
-
dot
public double dot(MathVector vector)
-
distance
public double distance(MathVector vector)
-
vectorBetween
public MathVector vectorBetween(MathVector vector)
-
angleRad
public double angleRad(MathVector vector)
-
angleDeg
public double angleDeg(MathVector vector)
-
rotateDeg
public MathVector rotateDeg(double angle)
-
rotateRad
public MathVector rotateRad(double angle)
-
-