pythagoras.d.IEllipse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pythagoras Show documentation
Show all versions of pythagoras Show documentation
Portable geometry routines, adapted from Apache Harmony geometry classes.
The newest version!
//
// Pythagoras - a collection of geometry classes
// http://github.com/samskivert/pythagoras
package pythagoras.d;
/**
* Provides read-only access to an {@link Ellipse}.
*/
public interface IEllipse extends IRectangularShape, Cloneable
{
/** Returns a mutable copy of this ellipse. */
Ellipse clone ();
}