Packages

  • package root
    Definition Classes
    root
  • package hevs
    Definition Classes
    root
  • package graphics

    A library used for teaching computer science in the ISC degree programme, notably for the course _101.1 Imperative programming_.

    A library used for teaching computer science in the ISC degree programme, notably for the course _101.1 Imperative programming_.

    The library provides classes for simple graphical drawing, with primitives such as points and lines drawing, simple text with different fonts, ... Input primitives are also available using keyboard or mouse. Several examples are also provided.

    Overview

    Here is how to create a window and draw a circle on it using FunGraphics :

    val f = new FunGraphics(400, 300)
    f.drawCircle(200,150, 50)
    Definition Classes
    hevs
  • package advanced
    Definition Classes
    graphics
  • package samples
  • Drawable
  • ListGraphics
  • package interfaces
    Definition Classes
    graphics
  • package samples
    Definition Classes
    graphics
  • package utils
    Definition Classes
    graphics
p

hevs.graphics

advanced

package advanced

Package Members

  1. package samples

Type Members

  1. trait Drawable extends AnyRef

    Interface for objects that could be drawn within the a graphical application

    Interface for objects that could be drawn within the a graphical application

    Version

    1.0

  2. class ListGraphics extends FunGraphics

    Extension of hevs.graphics.FunGraphics that manages a list of hevs.graphics.advanced.Drawable objects that are displayed using the repaint method.

Ungrouped