/**
  * Create a Movie 3D Model based on an the movie file provided.
  * @param String $_id object id
  * @param String $_moviePath path to the image that shall be rendered
  * @static
  */
 public static function createFromMovie($_id, $_moviePath)
 {
     $obj = new ArelObjectModel3D($_id);
     $obj->setMovie($_moviePath);
     return $obj;
 }