blob: c16ba270f79f5c60338b3f885a7dcb0045a6b0e0 [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:
* Pierre Allard - initial API and implementation
* Regent L'Archeveque
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.addons.geometry.paths.ui;
import org.eclipse.apogy.common.topology.ui.SceneObject;
public interface WayPointPathSceneObject extends SceneObject {
public void setPointSize(int pointSize);
public int getPointSize();
public void setEndPointsRadius(float endPointsRadius);
public float getEndPointsRadius();
public void setPathPresentationMode(PathPresentationMode mode);
public PathPresentationMode getPathPresentationMode();
}