Interface ISimpleGeometry

interface ISimpleGeometry {
    getFlatCoordinates(): number[];
    getType(): string;
}

Methods