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/GraphicalCircle.html | 770 ------------------------------ 1 file changed, 770 deletions(-) delete mode 100644 doc/graphyx/graphics/GraphicalCircle.html (limited to 'doc/graphyx/graphics/GraphicalCircle.html') diff --git a/doc/graphyx/graphics/GraphicalCircle.html b/doc/graphyx/graphics/GraphicalCircle.html deleted file mode 100644 index a9293f4..0000000 --- a/doc/graphyx/graphics/GraphicalCircle.html +++ /dev/null @@ -1,770 +0,0 @@ - - - - - Scaladoc for graphyx.graphics.GraphicalCircle - - - - - - - - - -

graphyx.graphics

- -
- -

GraphicalCircle

-
- -

- class - - GraphicalCircle(real: Circle) extends Circle with GraphicalShape with Product - -

-
- - - - - -
- -
- -
-
-

Inherits

-
  1. GraphicalShape
  2. GraphicalObject
  3. Drawable
  4. Circle
  5. Product
  6. Equals
  7. Shape
  8. AnyRef
  9. Any
-
-
- - - -
-

Value Members

-
  1. -

    - def - - AABB: AABB - -

    -

    Returns this shape's axis aligned bounding box

    -

    Returns this shape's axis aligned bounding box.

    - - -
    - definition classes: CircleShape -
    - -
    -
  2. -

    - val - - I: Double - -

    -

    Moment of inertia for a rotation about this shape's COM

    -

    Moment of inertia for a rotation about this shape's COM.

    - - -
    - definition classes: CircleShape -
    - -
    -
  3. -

    - def - - asBody: Body - -

    -

    Creates a new body made out of tis shape

    -

    Creates a new body made out of tis shape.

    - - -
    - definition classes: Shape -
    - -
    -
  4. -

    - def - - body: Body - -

    -

    Returns this shape's containing body

    -

    Returns this shape's containing body.

    - - -
    - definition classes: Shape -
    - -
    -
  5. -

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

    - -
  6. -

    - var - - collidable: Boolean - -

    -

    Flag determining this shapes ability to collide with other shapes

    -

    Flag determining this shapes ability to collide with other shapes.

    - - -
    - definition classes: Shape -
    - -
    -
  7. -

    - def - - contains(point: Vector2D): Boolean - -

    -

    Checks if the point point is contained in this shape

    -

    Checks if the point point is contained in this shape.

    - - -
    - definition classes: CircleShape -
    - -
    -
  8. -

    - 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 -
    - -
    -
  9. -

    - val - - density: Double - -

    -

    Density

    -

    Density. (Mass per area)

    - - -
    - definition classes: CircleShape -
    - -
    -
  10. -

    - def - - draw(): Unit - -

    -

    Stellt das graphische Objekt dar

    -

    Stellt das graphische Objekt dar.

    - - - - -
    -
  11. -

    - 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 -
    - -
    -
  12. -

    - 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 -
    - -
    -
  13. -

    - 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 -
    - -
    -
  14. -

    - 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 -
    - -
    -
  15. -

    - 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 -
    - -
    -
  16. -

    - 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. -

    - - - -
    -
  17. -

    - 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 -
    - -
    -
  18. -

    - 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 -
    - -
    -
  19. -

    - var - - friction: Double - -

    -

    Part of the coefficient of friction for a collision between this shape and another

    -

    Part of the coefficient of friction for a collision between this shape and another. -The coefficient of friction is calculated out of the product of this part and the other shape's part.

    - - -
    - definition classes: Shape -
    - -
    -
  20. -

    - var - - g: Graphics2D - -

    -

    Java Graphics Objekt zur graphischen Darstellung

    -

    Java Graphics Objekt zur graphischen Darstellung

    - - -
    - definition classes: Drawable -
    - -
    -
  21. -

    - 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. -

    - - - - -
    -
  22. -

    - def - - mass: Double - -

    -

    Returns the mass of this shape

    -

    Returns the mass of this shape. The mass is given by volume times density.

    - - -
    - definition classes: Shape -
    - -
    -
  23. -

    - var - - pos: Vector2D - -

    -

    Position of this shape's COM (in world coordinates)

    -

    Position of this shape's COM (in world coordinates).

    - - -
    - definition classes: Shape -
    - -
    -
  24. -

    - var - - ppm: Double - -

    -

    Anzahl von Pixeln pro Meter

    -

    Anzahl von Pixeln pro Meter.

    - - -
    - definition classes: Drawable -
    - -
    -
  25. -

    - def - - productArity: Int - -

    - -
  26. -

    - def - - productElement(arg0: Int): Any - -

    - -
  27. -

    - def - - productElements: Iterator[Any] - -

    - -
  28. -

    - def - - productIterator: Iterator[Any] - -

    - -
  29. -

    - def - - productPrefix: String - -

    - -
  30. -

    - def - - project(axis: Vector2D): Projection - -

    -

    Returns the projection of this shape onto the line given by the directional vector axis

    -

    Returns the projection of this shape onto the line given by the directional vector axis.

    -
    axis

    directional vector of the line

    returns

    projection of this shape

    - -
    - definition classes: CircleShape -
    - -
    -
  31. -

    - val - - radius: Double - -

    - -
  32. -

    - val - - real: Circle - -

    -

    Pointer to real object

    -

    Pointer to real object.

    - - - - -
    -
  33. -

    - var - - refLocalPos: Vector2D - -

    -

    Local position of this shape's body COM to its COM at a body rotation of zero

    -

    Local position of this shape's body COM to its COM at a body rotation of zero.

    - - -
    - definition classes: Shape -
    - -
    -
  34. -

    - var - - restitution: Double - -

    -

    Part of the coefficient of restitution for a collision between this shape and another

    -

    Part of the coefficient of restitution for a collision between this shape and another. -The coefficient of restitution is calculated out of the product of this part and the other shape's part.

    - - -
    - definition classes: Shape -
    - -
    -
  35. -

    - var - - rotation: Double - -

    -

    Rotation of this shape about its COM

    -

    Rotation of this shape about its COM.

    - - -
    - definition classes: Shape -
    - -
    -
  36. -

    - var - - rotation0: Double - -

    -

    Initial rotation

    -

    Initial rotation. Rotation of this shape before it was added to a body.

    - - -
    - definition classes: Shape -
    - -
    -
  37. -

    - var - - scale: Double - -

    -

    Skala in der die graphischen Objekte gezeichnet werden

    -

    Skala in der die graphischen Objekte gezeichnet werden.

    - - -
    - definition classes: Drawable -
    - -
    -
  38. -

    - def - - toString(): String - -

    -

    Returns a string representation of the object

    -

    Returns a string representation of the object. -

    -The default representation is platform dependent. -

    - - - - -
    -
  39. -

    - val - - transientShapes: Set[Shape] - -

    -

    Shapes with which this shape cannot collide

    -

    Shapes with which this shape cannot collide.

    - - -
    - definition classes: Shape -
    - -
    -
  40. -

    - val - - uid: Int - -

    -

    Unique identification number

    -

    Unique identification number.

    - - -
    - definition classes: GraphicalShapeShape -
    - -
    -
  41. -

    - val - - volume: Double - -

    -

    Volume

    -

    Volume. The volume is actually equivalent to this shape's area (SiMS is in 2D) -and is used with this shape's density to calculate its mass.

    - - -
    - definition classes: CircleShape -
    - -
    -
  42. -

    - var - - windowHeight: Int - -

    -

    Hoehe des Fensters in Pixeln

    -

    Hoehe des Fensters in Pixeln.

    - - -
    - definition classes: Drawable -
    - -
    -
  43. -

    - def - - ~(b: Body): Body - -

    -

    Creates a new body out of this shape and the shapes of body b

    -

    Creates a new body out of this shape and the shapes of body b.

    - - -
    - definition classes: Shape -
    - -
    -
  44. -

    - def - - ~(s: Shape): Body - -

    -

    Creates a new body out of this shape and the shape s

    -

    Creates a new body out of this shape and the shape s.

    - - -
    - definition classes: Shape -
    - -
    -
-
- -
-

Instance constructors

-
  1. -

    - new - - GraphicalCircle(real: Circle) - -

    - -
  2. -

    - new - - GraphicalCircle(radius: Double, density: Double) - -

    - -
  3. -

    - new - - GraphicalCircle() - -

    - -
-
- -
- - - \ No newline at end of file -- cgit v1.2.3