/******************************************************************************* * Copyright (c) 2012, 2013 Association for Decentralized Information Management in * Industry THTH ry. * 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: * VTT Technical Research Centre of Finland - initial API and implementation *******************************************************************************/ package org.simantics.g3d.tools; import javax.vecmath.Point3d; import org.simantics.g3d.shape.Color4d; public class DummyConstraintDetector extends ConstraintDetector { @Override protected void addConstrainLineHighlight(Point3d p1, Point3d p2, Color4d color) { } @Override protected void addConstrainPlaneHighlight(Point3d p1, Point3d p2, int axis) { } @Override public void clearConstraintHighlights() { } }