Selecting the projection for a polygon

I have created a series of stacked polygons, right next to each other, as per their latitude and longitude. I would expect these to have their edges touching each other. However, they are separate.

As discussed in http://gis.stackexchange.com/questions/191984/openlayers-3-cesium-polygon-projection-issue , the issue is that vertices are defined using latitude and longitude, whereas polygons are drawn in a different projection.

Is there a way to tell Cesium the projection to use for rendering a polygon? Otherwise, is this something that could be added in the future?
(which we could document in a GitHub artefact).

Code used in the sandcastle:

Hello,

Points of a polygon are connected by finding the shortest distance between those two points. Most of the time, the shortest distance will not be following the longitude and latitude lines.

However, for drawing rectangles that do follow lon/lat lines, we have a separate primitive type. Using a rectangle instead of a polygon should work for you.

Here is an example: http://cesiumjs.org/Cesium/Apps/Sandcastle/index.html?src=Rectangle.html&label=Geometries

Best,

Hannah

That works great, thanks a lot!