Uses of Class
georegression.struct.GeoTuple2D_F64
Package
Description
-
Uses of GeoTuple2D_F64 in georegression.geometry
Modifier and TypeMethodDescriptionstatic <T extends GeoTuple2D_F64>
TGeometryMath_F64.mult
(org.ejml.data.DMatrixRMaj M, GeoTuple3D_F64 pt, T mod) mod = M*pt
where mod is a 2D point that has an implicit z=1.static <T extends GeoTuple2D_F64>
TGeometryMath_F64.mult
(org.ejml.data.DMatrixRMaj M, T pt, T mod) Computes mod = M*pt, where both pt and mod are in homogeneous coordinates with z assumed to be equal to 1, and M is a 3x3 matrix.static <T extends GeoTuple2D_F64>
TGeometryMath_F64.multTran
(org.ejml.data.DMatrixRMaj M, GeoTuple2D_F64 pt, T mod) mod = MT*pt
where pt.z = 1 implicitly.Modifier and TypeMethodDescriptionstatic void
GeometryMath_F64.cross
(GeoTuple2D_F64 a, GeoTuple2D_F64 b, GeoTuple3D_F64 c) Computes the cross product:
c = a x bstatic void
GeometryMath_F64.cross
(GeoTuple2D_F64 a, GeoTuple3D_F64 b, GeoTuple3D_F64 c) Computes the cross product:
c = a x b
where 'a' is in homogeneous coordinates.static double
UtilTrig_F64.dot
(GeoTuple2D_F64 a, GeoTuple2D_F64 b) static double
GeometryMath_F64.innerProd
(GeoTuple2D_F64 a, org.ejml.data.DMatrixRMaj M, GeoTuple2D_F64 b) Computes the inner matrix product: ret = a'*M*b
where ret is a scalar number.static boolean
UtilPoint2D_F64.isEquals
(GeoTuple2D_F64 a, GeoTuple2D_F64 b, double tol) static void
GeometryMath_F64.mult
(org.ejml.data.DMatrixRMaj M, GeoTuple2D_F64 pt, GeoTuple3D_F64 mod) mod = M*pt
where pt has z=1 implicitly.static void
GeometryMath_F64.mult
(org.ejml.data.DMatrixRMaj P, GeoTuple4D_F64 X, GeoTuple2D_F64 mod) x = (P*X)/zstatic org.ejml.data.DMatrixRMaj
GeometryMath_F64.multCrossA
(GeoTuple2D_F64 A, org.ejml.data.DMatrixRMaj M, @Nullable org.ejml.data.DMatrixRMaj result) Computes the following:
result = cross(A)*M
where M and result are 3x3 matrices, cross(A) is the cross product matrix of A.static org.ejml.data.DMatrixRMaj
GeometryMath_F64.multCrossATransA
(GeoTuple2D_F64 A, org.ejml.data.DMatrixRMaj M, @Nullable org.ejml.data.DMatrixRMaj result) Computes the following:
result = cross(A)T*M
where M and result are 3x3 matrices, cross(A) is the cross product matrix of A.static <T extends GeoTuple3D_F64>
TGeometryMath_F64.multTran
(org.ejml.data.DMatrixRMaj M, GeoTuple2D_F64 pt, T mod) mod = MT*pt
where pt.z = 1 implicitly.static <T extends GeoTuple2D_F64>
TGeometryMath_F64.multTran
(org.ejml.data.DMatrixRMaj M, GeoTuple2D_F64 pt, T mod) mod = MT*pt
where pt.z = 1 implicitly.static void
GeometryMath_F64.rotate
(double c, double s, GeoTuple2D_F64 pt, GeoTuple2D_F64 solution) Rotates a 2D point by the specified angle.static void
GeometryMath_F64.rotate
(double theta, GeoTuple2D_F64 pt, GeoTuple2D_F64 solution) Rotates a 2D point by the specified angle. -
Uses of GeoTuple2D_F64 in georegression.metric
-
Uses of GeoTuple2D_F64 in georegression.misc.test
Modifier and TypeMethodDescriptionstatic void
GeometryUnitTest.assertEquals
(GeoTuple2D_F64 expected, GeoTuple2D_F64 found, double tol) static void
GeometryUnitTest.assertNotEquals
(GeoTuple2D_F64 expected, GeoTuple2D_F64 found, double tol) -
Uses of GeoTuple2D_F64 in georegression.struct
Modifier and TypeClassDescriptionclass
GeoTuple2D_F64<T extends GeoTuple2D_F64>
Generic Tuple for geometric objects that store (x,y)Modifier and TypeMethodDescriptionprotected void
GeoTuple2D_F64._setTo
(GeoTuple2D_F64 a) GeoTuple2D_F64.plus
(GeoTuple2D_F64 a) Additionvoid
GeoTuple2D_F64.plusIP
(GeoTuple2D_F64 a) In-place additionGeoTuple3D_F64.setTo
(GeoTuple2D_F64<?> p, double z) -
Uses of GeoTuple2D_F64 in georegression.struct.point
Modifier and TypeClassDescriptionclass
A point in 2Dclass
Spacial vector in 2D -
Uses of GeoTuple2D_F64 in georegression.struct.se