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 interfaces
    Definition Classes
    graphics
  • DualLayerGraphics
  • Graphics
  • package samples
    Definition Classes
    graphics
  • package utils
    Definition Classes
    graphics
p

hevs.graphics

interfaces

package interfaces

Type Members

  1. trait DualLayerGraphics extends AnyRef
  2. trait Graphics extends AnyRef

    An interface that every graphic application should have (common between FunGraphics and Gdx2d).

    An interface that every graphic application should have (common between FunGraphics and Gdx2d).

    Version

    1.0

Ungrouped