EllipseOutlineGeometry

new SuperMap3D.EllipseOutlineGeometry(options)

对椭圆体上椭圆轮廓的描述。
Name Type Description
options Object 对象具有以下属性:
Name Type Default Description
center Cartesian3 椭圆在固定框架中的中心点。
semiMajorAxis Number 椭圆半长轴的长度,以米为单位。
semiMinorAxis Number 椭圆的短半轴长度,以米为单位。
ellipsoid Ellipsoid Ellipsoid.WGS84 optional 椭圆将位于的椭圆体。
height Number 0.0 optional 椭圆和椭球表面之间的距离(以米为单位)。
extrudedHeight Number optional 椭圆的拉伸面和椭圆体表面之间的距离(以米为单位)。
rotation Number 0.0 optional 从北(逆时针)的角度,以弧度为单位。
granularity Number 0.02 optional 椭圆上的点之间的角距离,以弧度为单位。
numberOfVerticalLines Number 16 optional
Throws:
Example:
var ellipse = new SuperMap3D.EllipseOutlineGeometry({
  center : SuperMap3D.Cartesian3.fromDegrees(-75.59777, 40.03883),
  semiMajorAxis : 500000.0,
  semiMinorAxis : 300000.0,
  rotation : SuperMap3D.Math.toRadians(60.0)
});
var geometry = SuperMap3D.EllipseOutlineGeometry.createGeometry(ellipse);
See:

Members

staticSuperMap3D.EllipseOutlineGeometry.packedLength : Number

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

Methods

staticSuperMap3D.EllipseOutlineGeometry.createGeometry(ellipseGeometry)Geometry|undefined

计算椭圆体上椭圆轮廓的几何表示,包括其顶点、索引和包围球。
Name Type Description
ellipseGeometry EllipseOutlineGeometry 对椭圆的描述。
Returns:
计算的顶点和索引。

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

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

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

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