Uses of Class
org.eclipse.gef.geometry.projective.Vector3D
-
Packages that use Vector3D Package Description org.eclipse.gef.geometry.projective This package provides core abstractions to support calculations within 2-dimensional projective vector space. -
-
Uses of Vector3D in org.eclipse.gef.geometry.projective
Methods in org.eclipse.gef.geometry.projective that return Vector3D Modifier and Type Method Description Vector3D
Vector3D. getAdded(Vector3D other)
Vector3D
Vector3D. getCopy()
Returns a copy of thisVector3D
.Vector3D
Vector3D. getCrossProduct(Vector3D other)
Vector3D
Straight3D. getIntersection(Straight3D other)
Returns the intersection between this and the given otherStraight3D
.Vector3D
Vector3D. getRatio(Vector3D other, double t)
Vector3D
Vector3D. getScaled(double f)
Vector3D
Vector3D. getSubtracted(Vector3D other)
Methods in org.eclipse.gef.geometry.projective with parameters of type Vector3D Modifier and Type Method Description Vector3D
Vector3D. getAdded(Vector3D other)
Vector3D
Vector3D. getCrossProduct(Vector3D other)
double
Vector3D. getDotProduct(Vector3D other)
Returns the dot-product of this and the given otherVector3D
.Straight3D
Straight3D. getOrtho(Vector3D vp)
Returns the orthogonalStraight3D
through the givenVector3D
.Vector3D
Vector3D. getRatio(Vector3D other, double t)
double
Straight3D. getSignedDistanceCW(Vector3D vp)
Returns the clock-wise signed distance of the givenVector3D
to thisStraight3D
.Vector3D
Vector3D. getSubtracted(Vector3D other)
static Straight3D
Straight3D. through(Vector3D start, Vector3D end)
Constructs a newStraight3D
through the given start and endVector3D
s.
-