Changeset 1979
- Timestamp:
- Oct 26, 2005, 5:12:57 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/least_squares.py
r1975 r1979 329 329 # Change the point co-ords to conform to the 330 330 # mesh co-ords early in the code 331 if mesh_origin ==None:331 if mesh_origin is None: 332 332 geo = None 333 333 else: … … 606 606 #Currently pmesh is producing these. 607 607 #this should be stopped, 608 if None == self.mesh.vertexlist[v]:608 if self.mesh.vertexlist[v] is None: 609 609 continue 610 610 #for each triangle id (k) which has v as a vertex … … 1207 1207 #Replicate q according to x and y 1208 1208 #This is e.g used for Wind_stress 1209 if x == None or y ==None:1209 if x is None or y is None: 1210 1210 return q 1211 1211 else:
Note: See TracChangeset
for help on using the changeset viewer.