net.anwiba.spatial.topo.json.v01_0.Transform Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anwiba-spatial-data-topo-json Show documentation
Show all versions of anwiba-spatial-data-topo-json Show documentation
anwiba spatial topo json io project
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;
}
}