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

org.deeplearning4j.ui.flow.beans.Coords Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.deeplearning4j.ui.flow.beans;

import lombok.Data;

import java.io.Serializable;

/**
 * @author [email protected]
 */
@Data
public class Coords implements Serializable {
    private int x;
    private int y;

    public Coords() {

    }

    public Coords(int x, int y) {
        this.x = x;
        this.y = y;
    }

    public static Coords makeCoors(int x, int y) {
        return new Coords(x, y);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy