summaryrefslogtreecommitdiff
path: root/src/main/scala/graphyx/graphics/GraphicalShape.scala
blob: 256c0415ae1db447e14b0071d4622456c8b742d7 (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
}