graphyx.graphics

GraphicalShape

trait GraphicalShape extends Shape with GraphicalObject

known subclasses: GraphicalRegularPolygon, GraphicalRectangle, GraphicalCircle

Inherits

  1. GraphicalObject
  2. Drawable
  3. Shape
  4. AnyRef
  5. Any

Value Members

  1. def AABB: AABB

    Returns this shape's axis aligned bounding box

    Returns this shape's axis aligned bounding box.

    attributes: abstract
    definition classes: Shape
  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.

    attributes: abstract
    definition classes: Shape
  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. 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
  6. 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.

    attributes: abstract
    definition classes: Shape
  7. 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
  8. val density: Double

    Density

    Density. (Mass per area)

    attributes: abstract
    definition classes: Shape
  9. def draw(): Unit

    Stellt das graphische Objekt dar

    Stellt das graphische Objekt dar.

    attributes: abstract
    definition classes: GraphicalObjectDrawable
  10. 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
  11. 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
  12. 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
  13. 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
  14. 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
  15. 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
  16. 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
  17. 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
  18. 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
  19. var g: Graphics2D

    Java Graphics Objekt zur graphischen Darstellung

    Java Graphics Objekt zur graphischen Darstellung

    definition classes: Drawable
  20. 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
  21. 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
  22. var pos: Vector2D

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

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

    definition classes: Shape
  23. var ppm: Double

    Anzahl von Pixeln pro Meter

    Anzahl von Pixeln pro Meter.

    definition classes: Drawable
  24. 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

    attributes: abstract
    definition classes: Shape
  25. val real: Shape

    Pointer to real object

    Pointer to real object.

    attributes: abstract
  26. 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
  27. 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
  28. var rotation: Double

    Rotation of this shape about its COM

    Rotation of this shape about its COM.

    definition classes: Shape
  29. var rotation0: Double

    Initial rotation

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

    definition classes: Shape
  30. var scale: Double

    Skala in der die graphischen Objekte gezeichnet werden

    Skala in der die graphischen Objekte gezeichnet werden.

    definition classes: Drawable
  31. 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
  32. val transientShapes: Set[Shape]

    Shapes with which this shape cannot collide

    Shapes with which this shape cannot collide.

    definition classes: Shape
  33. val uid: Int

    Unique identification number

    Unique identification number.

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

    attributes: abstract
    definition classes: Shape
  35. var windowHeight: Int

    Hoehe des Fensters in Pixeln

    Hoehe des Fensters in Pixeln.

    definition classes: Drawable
  36. 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
  37. 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