00001 /******************************************************************************* 00002 * Copyright (c) 2014 Andrei Stoica. All rights reserved. This program and the accompanying 00003 * materials are made available under the terms of the GNU Public License v3.0 which accompanies 00004 * this distribution, and is available at http://www.gnu.org/licenses/gpl.html 00005 * 00006 * Contributors: Andrei Stoica - initial API and implementation during Google Summer of Code 2014 00007 ******************************************************************************/ 00008 00009 package edu.tum.cs.vis.model.util; 00010 00017 public class Thresholds { 00023 public static final float DISTANCE_TOLERANCE = 1e-5f; 00024 00029 public static final float ANGLE_TOLERANCE = 0.25f; 00030 00039 public static final boolean FAST_NEIGHBOR_DETECTION = false; 00040 }