Ignore:
Timestamp:
Apr 19, 2005, 2:34:00 PM (20 years ago)
Author:
duncan
Message:

comments from duncan and peter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/pmesh/mesh.py

    r1228 r1236  
    496496        # FIXME (DSG) Sets of what? 
    497497        self.setID={}
     498        #a dictionary of names.
     499        #multiple sets are allowed, but the gui does not yet
     500        #support this
     501       
    498502        self.setID['None']=0
     503        #contains the names of the sets pointing to the indexes
     504        #in the list.
     505       
    499506        self.sets=[[]]
     507        #Contains the lists of triangles (triangle sets)
     508
    500509       
    501510        self.visualise_graph = True
     
    12681277                    smooth_indents=smooth_indents,
    12691278                    expand_pinch=expand_pinch)
     1279   
    12701280       
    12711281   
     
    13041314                                 expand_pinch=expand_pinch)
    13051315        boundary_segs = self.shape.get_boundary()
    1306 
     1316        print "boundary_segs",boundary_segs
    13071317        segs2delete = self.alphaUserSegments
    1308                
     1318
     1319        #FIXME(DSG-DSG) this algorithm needs comments
     1320        #FIXME(DSG-DSG) can it be sped up?  It's slow
    13091321        new_segs = []
    13101322        alpha_segs = []
     
    13241336                unique_seg = Segment(v1, v2)
    13251337                new_segs.append(unique_seg)
    1326 
     1338               
    13271339            for seg in alpha_segs:
    13281340                try:
     
    21382150
    21392151    def weed(self,Vertices,Segments):
     2152        #Depreciated
    21402153        #weed out existing duplicates
    21412154        print 'len(self.getUserSegments())'
Note: See TracChangeset for help on using the changeset viewer.