二维笛卡尔点。
Name | Type | Default | Description |
---|---|---|---|
x
|
Number |
0.0
|
可选 X 组件。 |
y
|
Number |
0.0
|
可选 Y 分量。 |
See:
Members
X 组件。
-
Default Value:
0.0
Y 分量。
-
Default Value:
0.0
static constant Cesium.Cartesian2.ONE : Cartesian2
一个不可变的 Cartesian2 实例,初始化为 (1.0, 1.0)。
用于将对象打包到数组中的元素数。
static constant Cesium.Cartesian2.UNIT_X : Cartesian2
一个不可变的 Cartesian2 实例,初始化为 (1.0, 0.0)。
static constant Cesium.Cartesian2.UNIT_Y : Cartesian2
一个不可变的 Cartesian2 实例,初始化为 (0.0, 1.0)。
static constant Cesium.Cartesian2.ZERO : Cartesian2
一个不可变的 Cartesian2 实例,初始化为 (0.0, 0.0)。
Methods
clone ( result ) → Cartesian2
复制此 Cartesian2 实例。
Name | Type | Description |
---|---|---|
result
|
Cartesian2 | 可选 存储结果的对象。 |
Returns:
修改后的结果参数或新的 Cartesian2 实例(如果未提供)。
将此笛卡尔与提供的笛卡尔分量进行比较,如果相等则返回
true
,否则返回
false
。
Name | Type | Description |
---|---|---|
right
|
Cartesian2 | 可选 右手边的笛卡尔。 |
Returns:
如果它们相等,则为
true
,否则为
false
。
将此笛卡尔与提供的笛卡尔分量进行比较,如果它们通过绝对或相对容差测试,则返回
true
,否则返回
false
。
Name | Type | Default | Description |
---|---|---|---|
right
|
Cartesian2 | 可选 右手边的笛卡尔。 | |
relativeEpsilon
|
Number |
0
|
可选 用于相等测试的相对 epsilon 容差。 |
absoluteEpsilon
|
Number |
relativeEpsilon
|
可选 用于相等测试的绝对 epsilon 容差。 |
Returns:
如果它们在提供的 epsilon 内,则为
true
,否则为
false
。
创建一个以'(x,y)'格式表示此笛卡尔坐标的字符串。
Returns:
以'(x,y)'格式表示提供的笛卡尔坐标的字符串。
static Cesium.Cartesian2.abs (cartesian, result) → Cartesian2
计算提供的笛卡尔坐标的绝对值。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 要计算其绝对值的笛卡尔坐标。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
修改后的结果参数。
static Cesium.Cartesian2.add (left, right, result) → Cartesian2
计算两个笛卡尔的分量和。
Name | Type | Description |
---|---|---|
left
|
Cartesian2 | 第一个笛卡尔。 |
right
|
Cartesian2 | 第二个笛卡尔。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
修改后的结果参数。
返回提供的笛卡尔之间的角度(以弧度为单位)。
Name | Type | Description |
---|---|---|
left
|
Cartesian2 | 第一个笛卡尔。 |
right
|
Cartesian2 | 第二个笛卡尔。 |
Returns:
笛卡尔之间的角度。
static Cesium.Cartesian2.clamp (value, min, max, result) → Cartesian2
将一个值限制在两个值之间。
Name | Type | Description |
---|---|---|
value
|
Cartesian2 | 要钳位的值。 |
min
|
Cartesian2 | 最小界限。 |
max
|
Cartesian2 | 最大界限。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
限定值,使得 min <= result <= max。
static Cesium.Cartesian2.clone (cartesian, result ) → Cartesian2
复制 Cartesian2 实例。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 要复制的笛卡尔坐标。 |
result
|
Cartesian2 | 可选 存储结果的对象。 |
Returns:
修改后的结果参数或新的 Cartesian2 实例(如果未提供)。 (如果笛卡尔未定义,则返回未定义)
计算将输入向量的 Z 坐标隐式设置为 0 的叉积的大小
Name | Type | Description |
---|---|---|
left
|
Cartesian2 | 第一个笛卡尔。 |
right
|
Cartesian2 | 第二个笛卡尔。 |
Returns:
交叉产品。
计算两点之间的距离。
Name | Type | Description |
---|---|---|
left
|
Cartesian2 | 计算距离的第一个点。 |
right
|
Cartesian2 | 计算距离的第二个点。 |
Returns:
两点之间的距离。
Example:
// Returns 1.0
const d = Cesium.Cartesian2.distance(new Cesium.Cartesian2(1.0, 0.0), new Cesium.Cartesian2(2.0, 0.0));
计算两点之间的平方距离。使用此函数比较距离的平方比使用
Cartesian2#distance
比较距离更有效。
Name | Type | Description |
---|---|---|
left
|
Cartesian2 | 计算距离的第一个点。 |
right
|
Cartesian2 | 计算距离的第二个点。 |
Returns:
两点之间的距离。
Example:
// Returns 4.0, not 2.0
const d = Cesium.Cartesian2.distance(new Cesium.Cartesian2(1.0, 0.0), new Cesium.Cartesian2(3.0, 0.0));
static Cesium.Cartesian2.divideByScalar (cartesian, scalar, result) → Cartesian2
将提供的笛卡尔分量除以提供的标量。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 笛卡尔被划分。 |
scalar
|
Number | 要除以的标量。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
修改后的结果参数。
static Cesium.Cartesian2.divideComponents (left, right, result) → Cartesian2
计算两个笛卡尔的分量商。
Name | Type | Description |
---|---|---|
left
|
Cartesian2 | 第一个笛卡尔。 |
right
|
Cartesian2 | 第二个笛卡尔。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
修改后的结果参数。
计算两个笛卡尔的点(标量)积。
Name | Type | Description |
---|---|---|
left
|
Cartesian2 | 第一个笛卡尔。 |
right
|
Cartesian2 | 第二个笛卡尔。 |
Returns:
点积。
比较提供的笛卡尔分量,如果相等则返回
true
,否则返回
false
。
Name | Type | Description |
---|---|---|
left
|
Cartesian2 | 可选 第一个笛卡尔。 |
right
|
Cartesian2 | 可选 第二个笛卡尔。 |
Returns:
如果左右相等,则为
true
,否则为
false
。
static Cesium.Cartesian2.equalsEpsilon ( left , right , relativeEpsilon , absoluteEpsilon ) → Boolean
比较提供的笛卡尔分量,如果它们通过绝对或相对容差测试,则返回
true
,否则返回
false
。
Name | Type | Default | Description |
---|---|---|---|
left
|
Cartesian2 | 可选 第一个笛卡尔。 | |
right
|
Cartesian2 | 可选 第二个笛卡尔。 | |
relativeEpsilon
|
Number |
0
|
可选 用于相等测试的相对 epsilon 容差。 |
absoluteEpsilon
|
Number |
relativeEpsilon
|
可选 用于相等测试的绝对 epsilon 容差。 |
Returns:
true
left 和 right 在提供的 epsilon 内,则为 true,否则为
false
。
static Cesium.Cartesian2.fromArray (array, startingIndex , result ) → Cartesian2
从数组中的两个连续元素创建 Cartesian2。
Name | Type | Default | Description |
---|---|---|---|
array
|
Array.<Number> | 其两个连续元素分别对应于 x 和 y 分量的数组。 | |
startingIndex
|
Number |
0
|
可选 第一个元素在数组中的偏移量,对应于 x 分量。 |
result
|
Cartesian2 | 可选 存储结果的对象。 |
Returns:
修改后的结果参数或新的 Cartesian2 实例(如果未提供)。
Example:
// Create a Cartesian2 with (1.0, 2.0)
const v = [1.0, 2.0];
const p = Cesium.Cartesian2.fromArray(v);
// Create a Cartesian2 with (1.0, 2.0) using an offset into an array
const v2 = [0.0, 0.0, 1.0, 2.0];
const p2 = Cesium.Cartesian2.fromArray(v2, 2);
static Cesium.Cartesian2.fromCartesian3 (cartesian, result ) → Cartesian2
从现有的 Cartesian3 创建一个 Cartesian2 实例。这只是简单地采用笛卡尔 3 的 x 和 y 属性并删除 z。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian3 | 要从中创建 Cartesian2 实例的 Cartesian3 实例。 |
result
|
Cartesian2 | 可选 存储结果的对象。 |
Returns:
修改后的结果参数或新的 Cartesian2 实例(如果未提供)。
static Cesium.Cartesian2.fromCartesian4 (cartesian, result ) → Cartesian2
从现有的 Cartesian4 创建一个 Cartesian2 实例。这只是简单地采用笛卡尔 4 的 x 和 y 属性并删除 z 和 w。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian4 | 要从中创建 Cartesian2 实例的 Cartesian4 实例。 |
result
|
Cartesian2 | 可选 存储结果的对象。 |
Returns:
修改后的结果参数或新的 Cartesian2 实例(如果未提供)。
static Cesium.Cartesian2.fromElements (x, y, result ) → Cartesian2
从 x 和 y 坐标创建 Cartesian2 实例。
Name | Type | Description |
---|---|---|
x
|
Number | x 坐标。 |
y
|
Number | y 坐标。 |
result
|
Cartesian2 | 可选 存储结果的对象。 |
Returns:
修改后的结果参数或新的 Cartesian2 实例(如果未提供)。
static Cesium.Cartesian2.lerp (start, end, t, result) → Cartesian2
使用提供的笛卡尔计算在 t 处的线性插值或外插。
Name | Type | Description |
---|---|---|
start
|
Cartesian2 | 在 0.0 时对应于 t 的值。 |
end
|
Cartesian2 | 在 1.0 时对应于 t 的值。 |
t
|
Number | 沿 t 进行插值的点。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
修改后的结果参数。
计算笛卡尔的大小(长度)。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 要计算其大小的笛卡尔实例。 |
Returns:
幅度。
计算提供的笛卡尔平方幅度。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 要计算其平方幅度的笛卡尔实例。 |
Returns:
平方幅度。
static Cesium.Cartesian2.maximumByComponent (first, second, result) → Cartesian2
比较两个笛卡尔并计算包含所提供笛卡尔的最大分量的笛卡尔。
Name | Type | Description |
---|---|---|
first
|
Cartesian2 | 一个笛卡尔比较。 |
second
|
Cartesian2 | 一个笛卡尔比较。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
具有最大分量的笛卡尔。
计算提供的笛卡尔坐标的最大分量的值。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 要使用的笛卡尔。 |
Returns:
最大分量的值。
static Cesium.Cartesian2.minimumByComponent (first, second, result) → Cartesian2
比较两个笛卡尔并计算包含所提供笛卡尔的最小分量的笛卡尔。
Name | Type | Description |
---|---|---|
first
|
Cartesian2 | 一个笛卡尔比较。 |
second
|
Cartesian2 | 一个笛卡尔比较。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
具有最少分量的笛卡尔坐标。
计算提供的笛卡尔坐标的最小分量的值。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 要使用的笛卡尔。 |
Returns:
最小分量的值。
static Cesium.Cartesian2.mostOrthogonalAxis (cartesian, result) → Cartesian2
返回与提供的笛卡尔坐标最正交的轴。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 找到最正交轴的笛卡尔坐标。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
最正交的轴。
static Cesium.Cartesian2.multiplyByScalar (cartesian, scalar, result) → Cartesian2
将提供的笛卡尔分量乘以提供的标量。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 要缩放的笛卡尔坐标。 |
scalar
|
Number | 要与之相乘的标量。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
修改后的结果参数。
static Cesium.Cartesian2.multiplyComponents (left, right, result) → Cartesian2
计算两个笛卡尔的分量乘积。
Name | Type | Description |
---|---|---|
left
|
Cartesian2 | 第一个笛卡尔。 |
right
|
Cartesian2 | 第二个笛卡尔。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
修改后的结果参数。
static Cesium.Cartesian2.negate (cartesian, result) → Cartesian2
否定提供的笛卡尔坐标。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 笛卡尔被否定。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
修改后的结果参数。
static Cesium.Cartesian2.normalize (cartesian, result) → Cartesian2
计算提供的笛卡尔坐标的规范化形式。
Name | Type | Description |
---|---|---|
cartesian
|
Cartesian2 | 要归一化的笛卡尔坐标。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
修改后的结果参数。
将提供的实例存储到提供的数组中。
Name | Type | Default | Description |
---|---|---|---|
value
|
Cartesian2 | 要打包的值。 | |
array
|
Array.<Number> | 要打包的数组。 | |
startingIndex
|
Number |
0
|
可选 开始打包元素的数组索引。 |
Returns:
装入的数组
将 Cartesian2 数组展平为组件数组。
Name | Type | Description |
---|---|---|
array
|
Array.< Cartesian2 > | 要打包的笛卡尔数组。 |
result
|
Array.<Number> |
可选
存储结果的数组。如果这是一个类型化数组,它必须有 array.length * 2 个组件,否则会抛出
DeveloperError
。如果它是一个常规数组,它将被调整大小以具有 (array.length * 2) 个元素。
|
Returns:
打包的数组。
static Cesium.Cartesian2.subtract (left, right, result) → Cartesian2
计算两个笛卡尔的分量差。
Name | Type | Description |
---|---|---|
left
|
Cartesian2 | 第一个笛卡尔。 |
right
|
Cartesian2 | 第二个笛卡尔。 |
result
|
Cartesian2 | 存储结果的对象。 |
Returns:
修改后的结果参数。
static Cesium.Cartesian2.unpack (array, startingIndex , result ) → Cartesian2
从打包数组中检索实例。
Name | Type | Default | Description |
---|---|---|---|
array
|
Array.<Number> | 打包的数组。 | |
startingIndex
|
Number |
0
|
可选 要解包的元素的起始索引。 |
result
|
Cartesian2 | 可选 存储结果的对象。 |
Returns:
修改后的结果参数或新的 Cartesian2 实例(如果未提供)。
static Cesium.Cartesian2.unpackArray (array, result ) → Array.< Cartesian2 >
将一组笛卡尔分量解压缩为一组笛卡尔 2。
Name | Type | Description |
---|---|---|
array
|
Array.<Number> | 要解包的组件数组。 |
result
|
Array.< Cartesian2 > | 可选 存储结果的数组。 |
Returns:
解压后的数组。