projects/angular-cesium/src/lib/angular-cesium/models/cartesian3.ts
Properties |
Methods |
clone |
clone()
|
Returns :
Cartesian3
|
equals | ||||||
equals(other: Cartesian3)
|
||||||
Parameters :
Returns :
boolean
|
z |
z:
|
Type : number
|
import { Cartesian2 } from './cartesian2';
export interface Cartesian3 extends Cartesian2 {
z: number;
clone(): Cartesian3;
equals(other: Cartesian3): boolean;
}