SphereGeometry

new SuperMap3D.SphereGeometry(options)

描述一个以原点为中心的球体。
Name Type Description
options Object optional 具有以下属性的对象:
Name Type Default Description
radius Number 1.0 optional 球体的半径。
stackPartitions Number 64 optional 将椭球体分割成堆栈的次数。
slicePartitions Number 64 optional 将椭球面分割成径向切图的次数。
vertexFormat VertexFormat VertexFormat.DEFAULT optional 要计算的顶点属性。
Throws:
Example:
var sphere = new SuperMap3D.SphereGeometry({
  radius : 100.0,
  vertexFormat : SuperMap3D.VertexFormat.POSITION_ONLY
});
var geometry = SuperMap3D.SphereGeometry.createGeometry(sphere);
See:
  • SphereGeometry#createGeometry

Members

staticSuperMap3D.SphereGeometry.packedLength : Number

用于将对象打包到数组中的元素个数。

Methods

staticSuperMap3D.SphereGeometry.createGeometry(sphereGeometry)Geometry

计算球体的几何表示,包括其顶点、指数和包围球。
Name Type Description
sphereGeometry SphereGeometry 对球体的描述。
Returns:
计算出的顶点和索引。

staticSuperMap3D.SphereGeometry.pack(value, array, startingIndex)Array.<Number>

将提供的实例存储到提供的数组中。
Name Type Default Description
value SphereGeometry 要打包的值。
array Array.<Number> 要装入的数组。
startingIndex Number 0 optional 开始打包元素的数组的索引。
Returns:
被装入的数组。

staticSuperMap3D.SphereGeometry.unpack(array, startingIndex, result)SphereGeometry

从打包数组中检索实例。
Name Type Default Description
array Array.<Number> 打包数组。
startingIndex Number 0 optional 要解压缩的元素的起始索引。
result SphereGeometry optional 存储结果的对象。
Returns:
修改后的结果参数,或者一个新的 SphereGeometry 实例(如果没有提供)。