Reduce minimum inspect distance

This commit is contained in:
David Rowe 2020-06-08 08:10:19 +12:00
parent 69b6adc90c
commit 6df34d2a89

View file

@ -123,10 +123,11 @@ function orientationOf(vector) {
}
function handleRadialMode(dx, dy) {
var MIN_INSPECT_RADIUS = 0.1;
azimuth += dx / AZIMUTH_RATE;
radius += radius * dy * RADIUS_RATE;
if (radius < 1) {
radius = 1;
if (radius < MIN_INSPECT_RADIUS) {
radius = MIN_INSPECT_RADIUS;
}
vector = {