package import 수정
parent
43f55cd9e5
commit
11e666a415
@ -1,20 +0,0 @@
|
||||
package cokr.xit.fims.cmmn;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class Pstn {
|
||||
public Pstn(float left, float top){
|
||||
this.left = left;
|
||||
this.top = top;
|
||||
}
|
||||
|
||||
private float left;
|
||||
private float top;
|
||||
|
||||
public float[] to2Float() {
|
||||
return new float[] { this.left, this.top };
|
||||
}
|
||||
}
|
||||
@ -1,75 +0,0 @@
|
||||
package cokr.xit.fims.cmmn;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class PstnAndSize {
|
||||
public PstnAndSize(float left, float top, float width, float height){
|
||||
this.left = left;
|
||||
this.top = top;
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
public PstnAndSize(Pstn pstn, Size size){
|
||||
this.left = pstn.getLeft();
|
||||
this.top = pstn.getTop();
|
||||
this.width = size.getWidth();
|
||||
this.height = size.getHeight();
|
||||
}
|
||||
|
||||
public PstnAndSize(Pstn pstn, float width, float height){
|
||||
this.left = pstn.getLeft();
|
||||
this.top = pstn.getTop();
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
public PstnAndSize(float left, float top, Size size){
|
||||
this.left = left;
|
||||
this.top = top;
|
||||
this.width = size.getWidth();
|
||||
this.height = size.getHeight();
|
||||
}
|
||||
|
||||
private float left;
|
||||
private float top;
|
||||
private float width;
|
||||
private float height;
|
||||
|
||||
public Pstn getPstn() {
|
||||
return new Pstn(this.left, this.top);
|
||||
}
|
||||
public Size getSize() {
|
||||
return new Size(this.width, this.height);
|
||||
}
|
||||
|
||||
public float[] to4Float() {
|
||||
return new float[] { this.left, this.top, this.width, this.height };
|
||||
}
|
||||
|
||||
public PstnAndSize x2Width() {
|
||||
this.width = this.width * 2.0f;
|
||||
return this;
|
||||
}
|
||||
public PstnAndSize x2Height() {
|
||||
this.height = this.height * 2.0f;
|
||||
return this;
|
||||
}
|
||||
|
||||
public PstnAndSize transXY(float transX, float transY) {
|
||||
this.left = this.left * transX;
|
||||
this.top = this.top * transY;
|
||||
this.width = this.width * transX;
|
||||
this.height = this.height * transY;
|
||||
return this;
|
||||
}
|
||||
|
||||
public PstnAndSize addPstn(Pstn pstn) {
|
||||
this.left = this.left + pstn.getLeft();
|
||||
this.top = this.top + pstn.getTop();
|
||||
return this;
|
||||
}
|
||||
}
|
||||
@ -1,20 +0,0 @@
|
||||
package cokr.xit.fims.cmmn;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class Size {
|
||||
public Size(float width, float height){
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
private float width;
|
||||
private float height;
|
||||
|
||||
public float[] to2Float() {
|
||||
return new float[] { this.width, this.height };
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue