Changeset 3499


Ignore:
Timestamp:
Aug 16, 2006, 1:10:13 PM (17 years ago)
Author:
duncan
Message:

cleaning things up/ adding to user manual

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • documentation/user_manual/anuga_user_manual.tex

    r3450 r3499  
    25312531
    25322532\section{pmesh GUI}
     2533 \emph{Pmesh}
     2534allows the user to set up the mesh of the problem interactively.
     2535It can be used to build the outline of a mesh or to visualise a mesh
     2536automatically generated.
     2537
     2538Pmesh will let the user select various modes. The current allowable
     2539modes are vertex, segment, hole or region.  The mode describes what
     2540sort of object is added or selected in response to mouse clicks.  When
     2541changing modes any prior selected objects become deselected.
     2542
     2543In general the left mouse button will add an object and the right
     2544mouse button will select an object.  A selected object can de deleted
     2545by pressing the the middle mouse button (scroll bar).
    25332546
    25342547\section{alpha\_shape}
  • inundation/pmesh/graphical_mesh_generator.py

    r3492 r3499  
    108108                                 command=self.ImportUngenerate)
    109109       
    110         self.menuBar.addmenuitem('File', 'command',
    111                                  'Export ASCII obj',
    112                                  label='Export ASCII obj',
    113                                  command=self.exportObj)
     110        #self.menuBar.addmenuitem('File', 'command',
     111        #                         'Export ASCII obj',
     112        #                         label='Export ASCII obj',
     113        #                         command=self.exportObj)
    114114       
    115115        self.menuBar.addmenuitem('File', 'command',
     
    135135                                 label='filter alpha boundary',
    136136                                 command=self.auto_segmentFilter)
    137         self.menuBar.addmenuitem('File', 'command', 'Normalise mesh',
    138                                  label='Normalise mesh', command=self.normaliseMesh)
    139         self.menuBar.addmenuitem('File', 'command', 'Normalise mesh for glutobj',
    140                                  label='Normalise mesh for glutobj', command=self.normalise4ObjMesh)
     137        #self.menuBar.addmenuitem('File', 'command', 'Normalise mesh',
     138        #                         label='Normalise mesh', command=self.normaliseMesh)
     139        #self.menuBar.addmenuitem('File', 'command', 'Normalise mesh for glutobj',
     140         #                        label='Normalise mesh for glutobj', command=self.normalise4ObjMesh)
    141141        self.menuBar.addmenuitem('File', 'separator')
    142142        self.menuBar.addmenuitem('File', 'command', '',
     
    215215
    216216
    217     def createSetTools(self):
     217    def Out_createSetTools(self):
    218218        """
    219219        Add set tool buttons to the top of the GUI
     
    14311431        self.createZooms()
    14321432        self.createEdits()
    1433         self.createSetTools()
    1434         self.createSetIcons()
     1433        #self.createSetTools()
     1434        #self.createSetIcons()
    14351435        self.createVisualiseIcons()
    14361436        #self.addCylinders() # !!!DSG start pmesh with a triangle
Note: See TracChangeset for help on using the changeset viewer.