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

net.anwiba.spatial.topo.json.v01_0.Transform Maven / Gradle / Ivy

The newest version!
//Copyright (c) 2017 by Andreas W. Bartels
package net.anwiba.spatial.topo.json.v01_0;

import com.fasterxml.jackson.annotation.JsonProperty;

public class Transform {

    private double[] scale = null;
    private double[] translate = null;

    @JsonProperty("scale")
    public void setScale(final double[] scale) {
        this.scale = scale;
    }

    @JsonProperty("scale")
    public double[] getScale() {
        return this.scale;
    }

    @JsonProperty("translate")
    public void setTranslate(final double[] translate) {
        this.translate = translate;
    }

    @JsonProperty("translate")
    public double[] getTranslate() {
        return this.translate;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy