summaryrefslogtreecommitdiff
path: root/src/graphyx/graphics/GraphicalShape.scala
blob: e6f61a786df82bb6b6897ddcda8a414d3406431e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Graphyx
 * copyright (c) 2009 Jakob Odersky
 * made available under the MIT License
*/

package graphyx.graphics

import sims.dynamics._
trait GraphicalShape extends Shape  with GraphicalObject{
  val real: Shape
  override val uid: Int = real.uid
  pos = real.pos
  rotation = real.rotation
}