This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
machine_name:~ user$ hg clone https://bitbucket.org/arches/arches projects/arches | |
requesting all changes | |
adding changesets | |
adding manifests | |
adding file changes | |
added 1857 changesets with 33084 changes to 28726 files (+2 heads) | |
updating to branch default | |
6457 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
machine_name:~ user$ hg clone https://bitbucket.org/arches/cds projects/arches/archesproject/packages/cds | |
requesting all changes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OpenLayers.Util.QuickHull = (function() { | |
var buildConvexHull = function (baseLine, points, allBaseLines) { | |
var convexHullBaseLines = [], | |
maxDistance = 0, | |
maxPoint = [], | |
newPoints = [], | |
point, distance, i, vY, vX; | |
for (i = 0; i < points.length; i++) { | |
point = points[i]; | |
vY = baseLine[1][0] - baseLine[0][0]; |
NewerOlder