/** @file LRUD.java * * @author marco corvi * @date dec 2014 * * @brief TopoDroid drawing: button for an area type * -------------------------------------------------------- * Copyright This sowftare is distributed under GPL-3.0 or later * See the file COPYING. * -------------------------------------------------------- */ package com.topodroid.DistoX; class LRUD { float l, r, u, d; LRUD() { l = 0.0f; r = 0.0f; u = 0.0f; d = 0.0f; } }