projects/angular-cesium/src/lib/angular-cesium/models/cartesian2.ts
Properties |
Methods |
| clone |
clone()
|
|
Returns :
Cartesian2
|
| equals | ||||||
equals(right: Cartesian2)
|
||||||
|
Parameters :
Returns :
boolean
|
| x |
x:
|
Type : number
|
| y |
y:
|
Type : number
|
export interface Cartesian2 {
x: number;
y: number;
equals(right: Cartesian2): boolean;
clone(): Cartesian2;
}