@Test
public void testGetSharpCornerEnd() throws Exception {
PointF topLeft = createBorderCorner(TOP_LEFT, 0, 10, 50, borderBox)
.getSharpCornerEnd();
assertThat(topLeft.x, is(5f));
assertThat(topLeft.y, is(0f));
PointF topRight = createBorderCorner(TOP_RIGHT, 0, 10, 50, borderBox)
.getSharpCornerEnd();
assertThat(topRight.x, is(400f));
assertThat(topRight.y, is(5f));
PointF bottomRight = createBorderCorner(BOTTOM_RIGHT, 0, 10, 50, borderBox)
.getSharpCornerEnd();
assertThat(bottomRight.x, is(395f));
assertThat(bottomRight.y, is(400f));
PointF bottomLeft = createBorderCorner(BOTTOM_LEFT, 0, 10, 50, borderBox)
.getSharpCornerEnd();
assertThat(bottomLeft.x, is(0f));
assertThat(bottomLeft.y, is(395f));
}
BorderCornerTest.java 文件源码
java
阅读 28
收藏 0
点赞 0
评论 0
项目:ucar-weex-core
作者:
评论列表
文章目录