Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testMappingWithSlope_regular (0.17 seconds)

  1. android/guava-tests/test/com/google/common/math/LinearTransformationTest.java

        double x = 1.2;
        double y = 3.4;
        assertThrows(
            IllegalArgumentException.class, () -> LinearTransformation.mapping(x, y).and(x, y));
      }
    
      public void testMappingWithSlope_regular() {
        double x1 = 1.2;
        double y1 = 3.4;
        double xDelta = -5.6;
        double slope = -7.8;
        LinearTransformation transformation = LinearTransformation.mapping(x1, y1).withSlope(slope);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/math/LinearTransformationTest.java

        double x = 1.2;
        double y = 3.4;
        assertThrows(
            IllegalArgumentException.class, () -> LinearTransformation.mapping(x, y).and(x, y));
      }
    
      public void testMappingWithSlope_regular() {
        double x1 = 1.2;
        double y1 = 3.4;
        double xDelta = -5.6;
        double slope = -7.8;
        LinearTransformation transformation = LinearTransformation.mapping(x1, y1).withSlope(slope);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:11:48 GMT 2026
    - 7.2K bytes
    - Click Count (0)
Back to Top