com.esri.core.geometry.Geometry.hasZ()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(0.6k)|赞(0)|评价(0)|浏览(125)

本文整理了Java中com.esri.core.geometry.Geometry.hasZ()方法的一些代码示例,展示了Geometry.hasZ()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Geometry.hasZ()方法的具体详情如下:
包路径:com.esri.core.geometry.Geometry
类名称:Geometry
方法名:hasZ

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();
}

相关文章