Class Tuple2DExtensions
- java.lang.Object
-
- org.arakhne.afc.math.extensions.scala.Tuple2DExtensions
-
public final class Tuple2DExtensions extends Object
Xtext extensions for 2D vectors.- Since:
- 13.0
- Version:
- 17.0 2020-01-04 14:41:43
- Author:
- Stéphane GALLAND
- Maven Group Id:
- org.arakhne.afc.core
- Maven Artifact Id:
- mathgeom
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <V extends Vector2D<V,?>>
V$div(double left, V right)Scale this vector:left / right.static <P extends Point2D<P,?>>
P$minus(double left, P right)Subtract the scalar to this point:left - right.static <V extends Vector2D<V,?>>
V$minus(double left, V right)Subtract a vector to this scalar:left - right.static <P extends Point2D<P,?>>
P$plus(double left, P right)Sum of this point and a scalar:left + right.static <V extends Vector2D<V,?>>
V$plus(double left, V right)Sum of this vector and the given scalar:left + right.static <V extends Vector2D<V,?>>
V$times(double left, V right)Scale this vector:left * right.
-
-
-
Method Detail
-
$times
@Pure public static <V extends Vector2D<V,?>> V $times(double left, V right)
Scale this vector:left * right.This function is an implementation of the operator for the Scala Language.
The operation
right * leftis supported byMatrix2d.$times(double).- Type Parameters:
V- the type of the vector.- Parameters:
left- the scaling factor.right- the vector.- Returns:
- the scaled vector.
- See Also:
Tuple2D.scale(double),Vector2D.$times(double)
-
$times
@Pure public static <V extends Vector1D<V,?,?>> V $times(double left, V right)
Scale this vector:left * right.This function is an implementation of the operator for the Scala Language.
The operation
right * leftis supported byMatrix2d.$times(double).- Type Parameters:
V- the type of the vector.- Parameters:
left- the scaling factor.right- the vector.- Returns:
- the scaled vector.
- Since:
- 14.0
- See Also:
Tuple2D.scale(double),Vector2D.$times(double)
-
$div
@Pure public static <V extends Vector2D<V,?>> V $div(double left, V right)
Scale this vector:left / right.This function is an implementation of the operator for the Scala Language.
The operation
right / leftis supported byMatrix2d.$div(double).- Type Parameters:
V- the type of the vector.- Parameters:
left- the scaling factor.right- the vector.- Returns:
- the scaled vector.
- See Also:
Vector2D.$div(double)
-
$div
@Pure public static <V extends Vector1D<V,?,?>> V $div(double left, V right)
Scale this vector:left / right.This function is an implementation of the operator for the Scala Language.
The operation
right / leftis supported byMatrix2d.$div(double).- Type Parameters:
V- the type of the vector.- Parameters:
left- the scaling factor.right- the vector.- Returns:
- the scaled vector.
- Since:
- 14.0
- See Also:
Vector2D.$div(double)
-
$minus
@Pure public static <V extends Vector2D<V,?>> V $minus(double left, V right)
Subtract a vector to this scalar:left - right.This function is an implementation of the operator for the Scala Language.
The operation
right - leftis supported byVector2D.$minus(double).- Type Parameters:
V- the type of the vector.- Parameters:
left- the scaling factor.right- the vector.- Returns:
- the result.
- See Also:
Vector2D.sub(Vector2D),Vector2D.$minus(double)
-
$minus
@Pure public static <V extends Vector1D<V,?,?>> V $minus(double left, V right)
Subtract a vector to this scalar:left - right.This function is an implementation of the operator for the Scala Language.
The operation
right - leftis supported byVector2D.$minus(double).- Type Parameters:
V- the type of the vector.- Parameters:
left- the scaling factor.right- the vector.- Returns:
- the result.
- Since:
- 14.0
- See Also:
Vector2D.sub(Vector2D),Vector2D.$minus(double)
-
$minus
@Pure public static <P extends Point2D<P,?>> P $minus(double left, P right)
Subtract the scalar to this point:left - right.This function is an implementation of the operator for the Scala Language.
The operation
right + leftis supported byPoint2D.$minus(double).- Type Parameters:
P- the type of the point.- Parameters:
left- the scaling factor.right- the vector.- Returns:
- the result.
- See Also:
Point2D.sub(Point2D, Vector2D),Point2D.$minus(double)
-
$plus
@Pure public static <V extends Vector2D<V,?>> V $plus(double left, V right)
Sum of this vector and the given scalar:left + right.This function is an implementation of the operator for the Scala Language.
The operation
right + leftis supported byVector2D.$plus(double).- Type Parameters:
V- the type of the vector.- Parameters:
left- the scaling factor.right- the vector.- Returns:
- the result.
- See Also:
Vector2D.add(Vector2D, Vector2D),Vector2D.$plus(double)
-
$plus
@Pure public static <V extends Vector1D<V,?,?>> V $plus(double left, V right)
Sum of this vector and the given scalar:left + right.This function is an implementation of the operator for the Scala Language.
The operation
right + leftis supported byVector2D.$plus(double).- Type Parameters:
V- the type of the vector.- Parameters:
left- the scaling factor.right- the vector.- Returns:
- the result.
- Since:
- 14.0
- See Also:
Vector2D.add(Vector2D, Vector2D),Vector2D.$plus(double)
-
$plus
@Pure public static <P extends Point2D<P,?>> P $plus(double left, P right)
Sum of this point and a scalar:left + right.This function is an implementation of the operator for the Scala Language.
The operation
right + leftis supported byPoint2D.$plus(double).- Type Parameters:
P- the type of the point.- Parameters:
left- the scaling factor.right- the vector.- Returns:
- the result.
- See Also:
Point2D.add(Point2D, Vector2D),Point2D.$plus(double)
-
-