All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.applitools.eyes.selenium.positioning.ImageRotation Maven / Gradle / Ivy

There is a newer version: 5.63.43
Show newest version
package com.applitools.eyes.selenium.positioning;

/**
 * Encapsulates rotation model for images.
 */
public class ImageRotation {
    private final int rotation;

    /**
     *
     * @param rotation The degrees by which to rotate.
     */
    public ImageRotation(int rotation) {
        this.rotation = rotation;
    }

    /**
     *
     * @return The degrees by which to rotate.
     */
    public int getRotation() {
        return rotation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy