Changeset 2392
- Timestamp:
- Feb 14, 2006, 9:52:12 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pmesh/mesh.py
r2345 r2392 360 360 def get_vertices(self): 361 361 """ 362 Return a list of the vertices. The x and y values will be absolute362 Return a list of the vertices. The x and y values will be relative 363 363 Easting and Northings for the zone of the current geo_ref. 364 364 """ … … 478 478 479 479 mesh attributes describe the mesh that is produced eg triangles and vertices. 480 481 The Mesh holds user information to define the 480 All point information is relative to the geo_reference passed in 481 482 482 483 """ 483 484 … … 794 795 region=region, hole=hole, 795 796 geo_reference=center_geo_reference) 797 798 def auto_set_geo_reference(self): 799 """ 800 Automatically set the georeference, based in the minimum x and y 801 user vertex values. 802 803 Not implemented. 804 Don't implement now. using the new georeferenced points class 805 will change this 806 """ 807 #to do 808 # find the lower left hand corner 809 810 # set all points to that lower left hand corner. 811 # use change_geo_reference 812 pass 813 814 def change_geo_reference(self, new_geo_reference): 815 """ 816 """ 817 # chang egeoreference of; 818 #self.userVertices 819 #self.holes 820 #self.regions 821 pass 796 822 797 823 def addVertsSegs(self, outlineDict):
Note: See TracChangeset
for help on using the changeset viewer.