Changes between Version 21 and Version 22 of AnugaWhatsNew
- Timestamp:
- Jun 7, 2010, 12:37:13 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AnugaWhatsNew
v21 v22 14 14 }}} 15 15 16 You can automatically import the shallow water domain and all the commonly used boundariesusing this single line:16 You can automatically import the public ANUGA interface using this single line: 17 17 {{{ 18 from anuga import * 18 import anuga 19 19 }}} 20 20 21 Then you must reference the ANUGA API using the anuga. prefix: 21 22 22 You can also import common file conversion routines like so:23 23 {{{ 24 from anuga.file_conversion import * 24 domain = anuga.Domain(...) 25 boundary = anuga.Reflective_boundary() 25 26 }}} 26 27 27 See the documentation for the list of functions and classes that are made available for import .28 See the documentation for the list of functions and classes that are made available for import from the public API. 28 29 29 30 == Deprecated Functionality Removed in ANUGA v1.2 ==