/** {@inheritDoc} Renders the scene contained in this document. */
  public void render(ColladaTraversalContext tc, DrawContext dc) {
    tc.multiplyMatrix(this.getMatrix());

    ColladaScene scene = this.getScene();
    if (scene != null) scene.render(tc, dc);
  }