scalation

scala2d

package scala2d

The scala2d package contains classes, traits and objects for for simple 2D graphics in scala, based upon java_swing, java_awt and java_awt_geom.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. scala2d
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class Arc() extends Double with Product with Serializable

    Convenience case class for Arc2D (a subclass of RectangularShape).

  2. case class Arrow(p1: R2 = R2.apply(0.0, 0.0), p2: R2 = R2.apply(0.0, 0.0), len: Int = 10) extends Double with CurvilinearShape with Product with Serializable

    The Arrow class uses Java's Path2D class to create a line with an arrowhead on the far end.

  3. trait CurvilinearShape extends Shape with Error

    The CurvilinearShape trait provides a general type for line and curves.

  4. case class Ellipse() extends Double with Product with Serializable

    Convenience case class for Ellipse2D (a subclass of RectangularShape).

  5. case class Hexagon(vertex: Array[R2]) extends Double with Error with Product with Serializable

    The Hexagon class enhances the Path2D.

  6. case class Line(p1: R2 = R2.apply(0.0, 0.0), p2: R2 = R2.apply(0.0, 0.0)) extends Double with CurvilinearShape with Product with Serializable

    The Line class uses Java's Line2D class to create a line.

  7. case class Octagon(vertex: Array[R2]) extends Double with Error with Product with Serializable

    The Octagon class enhances the Path2D.

  8. case class Path() extends Double with Product with Serializable

    Convenience case class for Path2D.

  9. case class Pentagon(vertex: Array[R2]) extends Double with Error with Product with Serializable

    The Pentagon class enhances the Path2D.

  10. case class Polygon(vertex: Array[R2]) extends Double with Error with Product with Serializable

    The Polygon class enhances the Path2D.Double class (from the java.

  11. case class QArrow(p1: R2 = R2.apply(0.0, 0.0), pc: R2 = R2.apply(0.0, 0.0), p2: R2 = R2.apply(0.0, 0.0), len: Int = 10) extends Double with CurvilinearShape with Product with Serializable

    The QArrow class uses Java's Path2D class to create a quad curve with an arrowhead on the far end.

  12. case class QCurve(p1: R2 = R2.apply(0.0, 0.0), pc: R2 = R2.apply(0.0, 0.0), p2: R2 = R2.apply(0.0, 0.0), straight: Boolean = true) extends Double with CurvilinearShape with Error with Product with Serializable

    The QCurve class enhances the QuadCurve.Double class (from the java.

  13. case class Quad(vertex: Array[R2]) extends Double with Error with Product with Serializable

    The Quad class enhances the Path2D.

  14. case class R2(xx: Double, yy: Double) extends Double with Product with Serializable

    Convenience case class for Point2D.

  15. case class Rectangle() extends Double with Product with Serializable

    Convenience case class for Rectangle2D (a subclass of RectangularShape).

  16. case class RoundRectangle() extends Double with Product with Serializable

    Convenience case class for RoundRectangle2D (a subclass of RectangularShape).

  17. trait Transform extends Error

    The Transform trait provides a simple technique for transforming (translation, scaling and rotation) rectangular shapes.

  18. case class Triangle(vertex: Array[R2]) extends Double with Error with Product with Serializable

    The Triangle class enhances the Path2D.

Value Members

  1. object ArrowTest extends App

    The ArrowTest object is used to test the Arrow class.

  2. object Colors

    The Colors convenience object defines numerous common colors.

  3. object ColorsTest extends App

    The ColorsTest object is used to test the Colors object.

  4. object Constants

    Useful constants.

  5. object LineTest extends App

    The LineTest object is used to test the Line' class.

  6. object PolygonTest extends App

    The PolygonTest object tests the Polygon, Triangle, Quad and Hexagon classes.

  7. object QArrowTest extends App

    The QArrowTest object is used to test the QArrow class.

  8. object QCurve extends Serializable

    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: The QCurve companion object provides formulas used by the QCurve class.

  9. object QCurveTest extends App

    The QCurveTest object tests the QCurve classes' quad curves.

  10. object QCurveTest2 extends App

    The QCurveTest2 object tests traversals of QCurve's (quad curves).

  11. object Shapes

    The Shapes object Scala provides type aliases for basic Java2D types.

Inherited from AnyRef

Inherited from Any

Ungrouped