(core) Don't disable adaptive resampling on the projection

This commit is contained in:
Brandon Tilley 2014-01-22 20:43:26 -08:00
parent f5bf0743fb
commit 62e8d08bd9

View File

@ -117,8 +117,7 @@
};
planet.projection = d3.geo.orthographic()
.clipAngle(90)
.precision(0);
.clipAngle(90);
planet.path = d3.geo.path().projection(planet.projection);
return planet;