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

com.robotium.solo.PressurePoint Maven / Gradle / Ivy

There is a newer version: 5.6.3
Show newest version
package com.robotium.solo;

/**
 * A class to describe points and respective pressures in an Illustration
 *
 * @author Jake Kuli, [email protected]
 */
class PressurePoint {
    public final float x;
    public final float y;
    public final float pressure;

    public PressurePoint(float x, float y, float pressure) {
        this.x = x;
        this.y = y;
        this.pressure = pressure;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy