public class GeoCylinder extends Geometry3D
Geometry3D
类。
如果设置该类对象的底面圆的半径和顶面圆的半径相等,就是圆柱几何对象。
该类仅在 Windows、Linux 平台版本中支持。
注意:添加该类型的实例到三维场景的跟踪图层时,必须要先调用 getGeoModel()
方法使其按 GeoModel 的方式重新构建。具体使用方法可参见 GeoBox
类的范例程序。
构造器和说明 |
---|
GeoCylinder()
构造一个新的 GeoCylinder 对象。
|
GeoCylinder(GeoCylinder geoCylinder)
根据给定的 GeoCylinder 构造一个与其完全相同的新对象。
|
GeoCylinder(Point3D position,
double topRadius,
double bottomRadius,
double height)
根据指定的参数来构造一个 GeoCylinder 的新对象。
|
限定符和类型 | 方法和说明 |
---|---|
GeoCylinder |
clone()
克隆一个Geometry对象。
|
void |
dispose()
释放该对象所占用的资源。
|
double |
getBottomRadius()
返回圆台几何对象底面圆的半径,单位为米。
|
double |
getHeight()
返回圆台几何对象的高度,单位为米。
|
double |
getTopRadius()
返回圆台几何对象顶面圆的半径,单位为米。
|
void |
setBottomRadius(double value)
设置圆台几何对象底面圆的半径,单位为米。
|
void |
setHeight(double value)
设置圆台几何对象的高度,单位为米。
|
void |
setTopRadius(double value)
设置圆台几何对象顶面圆的半径,单位为米。
|
convertToGeoModel3D, convertToGeoModel3D, convertToGeoModel3D, getBoundingBox, getGeoModel, getInnerPoint3D, getPosition, getRotationX, getRotationY, getRotationZ, getScaleX, getScaleY, getScaleZ, getStyle3D, getVolume, offset, setPosition, setRotationX, setRotationY, setRotationZ, setScaleX, setScaleY, setScaleZ, setStyle3D
public GeoCylinder()
public GeoCylinder(GeoCylinder geoCylinder)
geoCylinder
- 给定的 GeoCylinder 对象。public GeoCylinder(Point3D position, double topRadius, double bottomRadius, double height)
position
- 圆台几何对象位置的三维坐标。topRadius
- 圆台几何对象顶面圆的半径,单位为米。bottomRadius
- 圆台几何对象底面圆的半径,单位为米。height
- 圆台几何对象的高度,单位为米。public double getTopRadius()
public void setTopRadius(double value)
value
- 圆台几何对象顶面圆的半径。单位为米。public double getBottomRadius()
public void setBottomRadius(double value)
value
- 圆台几何对象底面圆的半径。单位为米。public double getHeight()
public void setHeight(double value)
value
- 圆台几何对象的高度。单位为米。public GeoCylinder clone()
Geometry
public void dispose()
Geometry
dispose
在接口中 IDisposable
dispose
在类中 Geometry
Copyright © 2021–2024 SuperMap. All rights reserved.