blob: 8299e7c4e39f8551d5302bdd5242effec0f53557 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
<<<<<<< HEAD
* Pierre Allard - initial API and implementation
* Regent L'Archeveque
*
=======
* Pierre Allard,
* Regent L'Archeveque - initial API and implementation
*
>>>>>>> refs/heads/eclipse_pa
* SPDX-License-Identifier: EPL-1.0
*
*******************************************************************************/
package org.eclipse.apogy.common.geometry.data3d.ui.preferences;
import org.eclipse.apogy.common.topology.ui.MeshPresentationMode;
import org.eclipse.swt.graphics.RGB;
public class MRTData3DUIPreferencesConstants {
// Visibility Constants.
public static final String DEFAULT_TRIANGULAR_MESH_VISIBILITY_ID = "DEFAULT_TRIANGULAR_MESH_VISIBILITY_ID";
public static final Boolean DEFAULT_TRIANGULAR_MESH_VISIBILITY = Boolean.TRUE;
public static final String DEFAULT_CARTESIAN_COORD_SET_VISIBILITY_ID = "DEFAULT_CARTESIAN_COORD_SET_VISIBILITY_ID";
public static final Boolean DEFAULT_CARTESIAN_COORD_SET_VISIBILITY = Boolean.TRUE;
// Points size constants
public static final String DEFAULT_TRIANGULAR_MESH_POINT_SIZE_ID = "DEFAULT_TRIANGULAR_MESH_POINT_SIZE_ID";
public static final Integer DEFAULT_TRIANGULAR_MESH_POINT_SIZE = new Integer(1);
public static final String DEFAULT_CARTESIAN_COORD_SET_POINT_SIZE_ID = "DEFAULT_CARTESIAN_COORD_SET_POINT_SIZE_ID";
public static final Integer DEFAULT_CARTESIAN_COORD_SET_POINT_SIZE = new Integer(1);
// Presentation Mode Constants.
public static final String DEFAULT_TRIANGULAR_MESH_PRESENTATION_MODE_ID = "DEFAULT_TRIANGULAR_MESH_PRESENTATION_MODE_ID";
public static final MeshPresentationMode DEFAULT_TRIANGULAR_MESH_PRESENTATION_MODE = MeshPresentationMode.SURFACE;
// Color Constants.
public static final String DEFAULT_TRIANGULAR_MESH_COLOR_ID = "DEFAULT_TRIANGULAR_MESH_COLOR_ID";
public static final RGB DEFAULT_TRIANGULAR_MESH_COLOR = new RGB(255, 255, 255); // Brown : new RGB(150,75,0);
public static final String DEFAULT_CARTESIAN_COORD_SET_COLOR_ID = "DEFAULT_CARTESIAN_COORD_SET_COLOR_ID";
public static final RGB DEFAULT_CARTESIAN_COORD_SET_COLOR = new RGB(255, 0, 0);
// Shading Constants.
public static final String DEFAULT_TRIANGULAR_MESH_USE_SHADING_ID = "DEFAULT_TRIANGULAR_MESH_USE_SHADING_ID";
public static final Boolean DEFAULT_TRIANGULAR_MESH_USE_SHADING = Boolean.TRUE;
}