reorder service layer

This commit is contained in:
Val Erastov 2016-11-27 01:32:45 -08:00
parent 8fa8b7757b
commit 85bc6cd711

View file

@ -226,9 +226,9 @@ Viewer.prototype._setupServiceLayer = function() {
layer = new Layer("_service", Styles.SERVICE);
// layer.objects.push(new CrossHair(0, 0, 20));
layer.objects.push(new BasisOrigin(null, this));
layer.objects.push(this.referencePoint);
layer.objects.push(new Point(0, 0, 2));
layer.objects.push(this.referencePoint);
layer.objects.push(new BasisOrigin(null, this));
this._serviceLayers.push(layer);
};