From 3bc7d76b5da00781908da82cd0e989885323396f Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Mon, 29 Jun 2015 12:36:03 +0200 Subject: remove old scaladoc --- doc/graphyx/graphics/GraphicalObject.html | 376 ------------------------------ 1 file changed, 376 deletions(-) delete mode 100644 doc/graphyx/graphics/GraphicalObject.html (limited to 'doc/graphyx/graphics/GraphicalObject.html') diff --git a/doc/graphyx/graphics/GraphicalObject.html b/doc/graphyx/graphics/GraphicalObject.html deleted file mode 100644 index c99d087..0000000 --- a/doc/graphyx/graphics/GraphicalObject.html +++ /dev/null @@ -1,376 +0,0 @@ - - - - - Scaladoc for graphyx.graphics.GraphicalObject - - - - - - - - - -

graphyx.graphics

- -
- -

GraphicalObject

-
- -

- trait - - GraphicalObject extends Drawable - -

-
-

Only copies functional info! (e.g. Graphical world does not include shapes, bodies).

- - - - -
- -
- -
-
-

Inherits

-
  1. Drawable
  2. AnyRef
  3. Any
-
-
- - - -
-

Value Members

-
  1. -

    - def - - correctY(y: Double): Double - -

    -

    Korrigiert einen Y-Wert in Bildschirmkoordinaten zu seinem kartesischen Aequivalent

    -

    Korrigiert einen Y-Wert in Bildschirmkoordinaten zu seinem kartesischen Aequivalent.

    -
    y

    zu korrigierender Wert

    - -
    - definition classes: Drawable -
    - -
    -
  2. -

    - def - - draw(): Unit - -

    -

    Stellt das graphische Objekt dar

    -

    Stellt das graphische Objekt dar.

    - -
    - attributes: abstract -
    - - -
    -
  3. -

    - def - - drawCircle(center: Vector2D, radius: Double): Unit - -

    -

    Malt einen Kreis auf g

    -

    Malt einen Kreis auf g.

    -
    center

    Mitte des Kreises in Weltkoordinaten

    radius

    Radius des Kreises

    - -
    - definition classes: Drawable -
    - -
    -
  4. -

    - def - - drawLine(startPoint: Vector2D, endPoint: Vector2D): Unit - -

    -

    Malt eine Linie auf g

    -

    Malt eine Linie auf g.

    -
    startPoint

    Startpunkt in Weltkoordinaten

    endPoint

    Endpunkt in Weltkoordinaten

    - -
    - definition classes: Drawable -
    - -
    -
  5. -

    - def - - drawPoint(point: Vector2D): Unit - -

    -

    Malt einen Punkt auf g

    -

    Malt einen Punkt auf g. -

    -Der Punkt wird von einem Kreis umgeben.

    -
    point

    Punkt in Weltkoordinaten

    - -
    - definition classes: Drawable -
    - -
    -
  6. -

    - def - - drawPolygon(points: Seq[Vector2D]): Unit - -

    -

    Malt ein Polygon auf g

    -

    Malt ein Polygon auf g.

    -
    points

    Eckpunkte des Polygons in Weltkoordinaten

    - -
    - definition classes: Drawable -
    - -
    -
  7. -

    - def - - drawVector(v: Vector2D, p: Vector2D): Unit - -

    -

    Malt einen Vektor auf g

    -

    Malt einen Vektor auf g.

    -
    v

    Vektor in Weltkoordinaten

    p

    Ursprungspunkt in Weltkoordinaten

    - -
    - definition classes: Drawable -
    - -
    -
  8. -

    - def - - equals(arg0: Any): Boolean - -

    -

    This method is used to compare the receiver object (this) -with the argument object (arg0) for equivalence

    -

    This method is used to compare the receiver object (this) -with the argument object (arg0) for equivalence.

    -The default implementations of this method is an equivalence -relation: -

      -
    • It is reflexive: for any instance x of type Any, - x.equals(x) should return true.
    • -
    • It is symmetric: for any instances x and y of type - Any, x.equals(y) should return true if and only - if y.equals(x) returns true.
    • -
    • It is transitive: for any instances - x, y, and z of type AnyRef - if x.equals(y) returns true and - y.equals(z) returns - true, then x.equals(z) should return true.
    • -
    -

    -If you override this method, you should verify that -your implementation remains an equivalence relation. -Additionally, when overriding this method it is often necessary to -override hashCode to ensure that objects that are -"equal" (o1.equals(o2) returns true) -hash to the same Int -(o1.hashCode.equals(o2.hashCode)). -

    -
    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise. -

    - -
    - definition classes: AnyRef ⇐ Any -
    - -
    -
  9. -

    - def - - fillCircle(center: Vector2D, radius: Double): Unit - -

    -

    Malt einen massiven Kreis auf g

    -

    Malt einen massiven Kreis auf g.

    -
    center

    Mitte des Kreises in Weltkoordinaten

    radius

    Radius des Kreises

    - -
    - definition classes: Drawable -
    - -
    -
  10. -

    - def - - fillPolygon(points: Seq[Vector2D]): Unit - -

    -

    Malt ein massives Polygon auf g

    -

    Malt ein massives Polygon auf g.

    -
    points

    Eckpunkte des Polygons in Weltkoordinaten

    - -
    - definition classes: Drawable -
    - -
    -
  11. -

    - var - - g: Graphics2D - -

    -

    Java Graphics Objekt zur graphischen Darstellung

    -

    Java Graphics Objekt zur graphischen Darstellung

    - - -
    - definition classes: Drawable -
    - -
    -
  12. -

    - def - - hashCode(): Int - -

    -

    Returns a hash code value for the object

    -

    Returns a hash code value for the object.

    -The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash -codes (o1.hashCode.equals(o2.hashCode)) yet not be -equal (o1.equals(o2) returns false). A -degenerate implementation could always return 0. -However, it is required that if two objects are equal -(o1.equals(o2) returns true) that they -have identical hash codes -(o1.hashCode.equals(o2.hashCode)). Therefore, when -overriding this method, be sure to verify that the behavior is -consistent with the equals method. -

    - - -
    - definition classes: AnyRef ⇐ Any -
    - -
    -
  13. -

    - var - - ppm: Double - -

    -

    Anzahl von Pixeln pro Meter

    -

    Anzahl von Pixeln pro Meter.

    - - -
    - definition classes: Drawable -
    - -
    -
  14. -

    - val - - real: AnyRef - -

    -

    Pointer to real object

    -

    Pointer to real object.

    - -
    - attributes: abstract -
    - - -
    -
  15. -

    - var - - scale: Double - -

    -

    Skala in der die graphischen Objekte gezeichnet werden

    -

    Skala in der die graphischen Objekte gezeichnet werden.

    - - -
    - definition classes: Drawable -
    - -
    -
  16. -

    - def - - toString(): String - -

    -

    Returns a string representation of the object

    -

    Returns a string representation of the object. -

    -The default representation is platform dependent. -

    - - -
    - definition classes: AnyRef ⇐ Any -
    - -
    -
  17. -

    - var - - windowHeight: Int - -

    -

    Hoehe des Fensters in Pixeln

    -

    Hoehe des Fensters in Pixeln.

    - - -
    - definition classes: Drawable -
    - -
    -
-
- - - -
- - - \ No newline at end of file -- cgit v1.2.3