| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| PerspectiveTransformSupport |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Copyright (c) 2005, the JUNG Project and the Regents of the University of | |
| 3 | * California All rights reserved. | |
| 4 | * | |
| 5 | * This software is open-source under the BSD license; see either "license.txt" | |
| 6 | * or http://jung.sourceforge.net/license.txt for a description. | |
| 7 | * | |
| 8 | * Created on Aug 5, 2005 | |
| 9 | */ | |
| 10 | ||
| 11 | package edu.uci.ics.jung.visualization.jai; | |
| 12 | ||
| 13 | ||
| 14 | /** | |
| 15 | * basic API for implementing perspective transform support | |
| 16 | * | |
| 17 | * @author Tom Nelson | |
| 18 | * | |
| 19 | */ | |
| 20 | public interface PerspectiveTransformSupport { | |
| 21 | ||
| 22 | void activate(); | |
| 23 | void deactivate(); | |
| 24 | void activate(boolean state); | |
| 25 | PerspectiveShapeTransformer getPerspectiveTransformer(); | |
| 26 | } |