/******************************************************************************* * This file is part of Goko. * * Goko is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Goko is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Goko. If not, see <http://www.gnu.org/licenses/>. *******************************************************************************/ package org.goko.core.controller; public interface IGkConstants { public static final String X_AXIS = "X"; public static final String X_AXIS_NEGATIVE = "-X"; public static final String Y_AXIS = "Y"; public static final String Y_AXIS_NEGATIVE = "-Y"; public static final String Z_AXIS = "Z"; public static final String Z_AXIS_NEGATIVE = "-Z"; public static final String A_AXIS = "A"; public static final String A_AXIS_NEGATIVE = "-A"; public static final String B_AXIS = "B"; public static final String B_AXIS_NEGATIVE = "-B"; public static final String C_AXIS = "C"; public static final String C_AXIS_NEGATIVE = "-C"; }