d3.d.ts: fixed raw signatures for conic projections

This commit is contained in:
Asger Feldthaus
2014-03-31 16:07:42 +02:00
parent 0e143ef3e7
commit a1c23bddc3

6
d3/d3.d.ts vendored
View File

@@ -2960,21 +2960,21 @@ declare module D3 {
*/
conicConformal: {
(): Projection;
raw: RawProjection;
raw(phi1:number, phi2:number): RawProjection;
}
/**
* the conic equidistant projection.
*/
conicEquidistant: {
(): Projection;
raw: RawProjection;
raw(phi1:number, phi2:number): RawProjection;
}
/**
* the conic equal-area (a.k.a. Albers) projection.
*/
conicEqualArea: {
(): Projection;
raw: RawProjection;
raw(phi1:number, phi2:number): RawProjection;
}
/**
* the equirectangular (plate carreé) projection.