/** Replies the property that is the height of the box.
*
* @return the height property.
*/
@Pure
public IntegerProperty heightProperty() {
if (this.height == null) {
this.height = new ReadOnlyIntegerWrapper(this, MathFXAttributeNames.HEIGHT);
this.height.bind(Bindings.subtract(maxYProperty(), minYProperty()));
}
return this.height;
}
RectangularPrism3ifx.java 文件源码
java
阅读 35
收藏 0
点赞 0
评论 0
项目:afc
作者:
评论列表
文章目录