Packages

object Picture extends BaseConstructor with BitmapConstructor with FromGifBase64Constructor with FromPngBase64Constructor with FromJpgBase64Constructor with PathConstructor with ShapeConstructor with TextConstructor

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Picture
  2. TextConstructor
  3. ShapeConstructor
  4. PathConstructor
  5. FromJpgBase64Constructor
  6. FromPngBase64Constructor
  7. FromGifBase64Constructor
  8. BitmapConstructor
  9. BaseConstructor
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type Algebra = algebra.Algebra with Basic with Bitmap with FromBufferedImage with FromPngBase64 with FromGifBase64 with FromJpgBase64
    Definition Classes
    PictureBaseConstructor
  2. type Drawing[A] = IndexedStateT[Eval, List[ContextTransform], List[ContextTransform], (BoundingBox, algebra.generic.Renderable[Reification, A])]
    Definition Classes
    PictureBaseConstructor
  3. type Picture[A] = algebra.Picture[Algebra, A]
    Definition Classes
    BaseConstructor

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def catmulRom(points: Seq[Point], tension: Double = 0.5): Picture[Unit]
    Definition Classes
    PathConstructor
  6. def circle(diameter: Double): Picture[Unit]

    A circle with the given diameter.

    A circle with the given diameter. We use diamter rather than radius so circle(100) has the same size as square(100)

    Definition Classes
    ShapeConstructor
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def empty: Picture[Unit]

    The empty shape, which is no shape at all.

    The empty shape, which is no shape at all.

    Definition Classes
    ShapeConstructor
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def equilateralTriangle(width: Double): Picture[Unit]

    Create an equilateral triangle with the given side length.

    Create an equilateral triangle with the given side length.

    Definition Classes
    PathConstructor
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. def fromGifBase64(base64: Base64[Gif]): Picture[Unit]
    Definition Classes
    FromGifBase64Constructor
  14. def fromJpgBase64(base64: Base64[Jpg]): Picture[Unit]
    Definition Classes
    FromJpgBase64Constructor
  15. def fromPngBase64(base64: Base64[Png]): Picture[Unit]
    Definition Classes
    FromPngBase64Constructor
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def interpolatingSpline(points: Seq[Point]): Picture[Unit]
    Definition Classes
    PathConstructor
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def path(path: OpenPath): Picture[Unit]
    Definition Classes
    PathConstructor
  24. def path(path: ClosedPath): Picture[Unit]
    Definition Classes
    PathConstructor
  25. def read(file: String): Picture[Unit]

    Convenience to read an image from the file specified in the given String

    Convenience to read an image from the file specified in the given String

    Definition Classes
    BitmapConstructor
  26. def read(file: File): Picture[Unit]

    Read an image from the given file

    Read an image from the given file

    Definition Classes
    BitmapConstructor
  27. def rectangle(width: Double, height: Double): Picture[Unit]

    A rectangle with the given width and height.

    A rectangle with the given width and height.

    Definition Classes
    ShapeConstructor
  28. def regularPolygon(sides: Int, radius: Double): Picture[Unit]
    Definition Classes
    PathConstructor
  29. def roundedRectangle(width: Double, height: Double, radius: Double): Picture[Unit]
    Definition Classes
    PathConstructor
  30. def square(width: Double): Picture[Unit]

    A square with the given side length.

    A square with the given side length.

    Definition Classes
    ShapeConstructor
  31. def star(points: Int, outerRadius: Double, innerRadius: Double): Picture[Unit]
    Definition Classes
    PathConstructor
  32. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  33. def text(text: String): Picture[Unit]

    Render the given String

    Render the given String

    Definition Classes
    TextConstructor
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. def triangle(width: Double, height: Double): Picture[Unit]

    An isoceles triangle with the given width and height.

    An isoceles triangle with the given width and height.

    Definition Classes
    ShapeConstructor
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from TextConstructor

Inherited from ShapeConstructor

Inherited from PathConstructor

Inherited from BitmapConstructor

Inherited from BaseConstructor

Inherited from AnyRef

Inherited from Any

Ungrouped