本文整理了Java中com.esri.core.geometry.Geometry.hasZ()
方法的一些代码示例,展示了Geometry.hasZ()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Geometry.hasZ()
方法的具体详情如下:
包路径:com.esri.core.geometry.Geometry
类名称:Geometry
方法名:hasZ
[英]Returns true if this Geometry has the Z attribute
[中]如果此几何体具有Z属性,则返回true
代码示例来源:origin: Qihoo360/Quicksql
/** Returns whether {@code geom} has at least one z-coordinate. */
public static boolean ST_Is3D(Geom geom) {
return geom.g().hasZ();
}
代码示例来源:origin: org.apache.calcite/calcite-core
/** Returns whether {@code geom} has at least one z-coordinate. */
public static boolean ST_Is3D(Geom geom) {
return geom.g().hasZ();
}
内容来源于网络,如有侵权,请联系作者删除!