# File vtk/gtk/GtkVTKRenderWindow.rb, line 509
  def Wireframe
    actors = @CurrentRenderer.GetActors
    numActors = actors.GetNumberOfItems
    actors.InitTraversal
    for i in 0...numActors
      actor = actors.GetNextItem
      actor.GetProperty.SetRepresentationToWireframe
    end

    self.Render
  end