mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 21:22:07 +02:00
Reduce minimum inspect distance
This commit is contained in:
parent
69b6adc90c
commit
6df34d2a89
1 changed files with 3 additions and 2 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue