Fix a couple minor mis-spelings in
OpenLayers.Geometry.Polygon.createRegularPolygon (Closes #1214) git-svn-id: http://svn.openlayers.org/trunk/openlayers@5439 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -76,10 +76,10 @@ OpenLayers.Geometry.Polygon.createRegularPolygon = function(origin, radius, side
|
||||
if(rotation) {
|
||||
angle += (rotation / 180) * Math.PI;
|
||||
}
|
||||
var rotateAngle, x, y;
|
||||
var rotatedAngle, x, y;
|
||||
var points = [];
|
||||
for(var i=0; i<sides; ++i) {
|
||||
var rotatedAngle = angle + (i * 2 * Math.PI / sides);
|
||||
rotatedAngle = angle + (i * 2 * Math.PI / sides);
|
||||
x = origin.x + (radius * Math.cos(rotatedAngle));
|
||||
y = origin.y + (radius * Math.sin(rotatedAngle));
|
||||
points.push(new OpenLayers.Geometry.Point(x, y));
|
||||
|
||||
Reference in New Issue
Block a user