- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for withSlope (0.13 sec)
-
android/guava-tests/test/com/google/common/math/LinearTransformationTest.java
LinearTransformation transformation = LinearTransformation.mapping(x1, y1).withSlope(slope); assertDiagonalLinearTransformation(transformation, x1, y1, xDelta, xDelta * slope); } public void testMappingWithSlope_horizontal() { double x1 = 1.2; double y = 5.6; LinearTransformation transformation = LinearTransformation.mapping(x1, y).withSlope(0.0); assertHorizontalLinearTransformation(transformation, y); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 7.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LinearTransformationTest.java
LinearTransformation transformation = LinearTransformation.mapping(x1, y1).withSlope(slope); assertDiagonalLinearTransformation(transformation, x1, y1, xDelta, xDelta * slope); } public void testMappingWithSlope_horizontal() { double x1 = 1.2; double y = 5.6; LinearTransformation transformation = LinearTransformation.mapping(x1, y).withSlope(0.0); assertHorizontalLinearTransformation(transformation, y); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 7.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/normalization/DefaultModelNormalizer.java
private Dependency injectDependency(Dependency d) { // we cannot set this directly in the MDO due to the interactions with dependency management return (d.getScope() == null || d.getScope().isEmpty()) ? d.withScope("compile") : d; } /** * Returns a list suited for the builders, i.e. null if not modified */ private <T> List<T> injectList(List<T> list, Function<T, T> modifer) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.9K bytes - Viewed (0)