Changes between Version 21 and Version 22 of AnugaWhatsNew


Ignore:
Timestamp:
Jun 7, 2010, 12:37:13 PM (14 years ago)
Author:
hudson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AnugaWhatsNew

    v21 v22  
    1414}}}
    1515
    16 You can automatically import the shallow water domain and all the commonly used boundaries using this single line:
     16You can automatically import the public ANUGA interface using this single line:
    1717{{{
    18 from anuga import *
     18import anuga
    1919}}}
    2020
     21Then you must reference the ANUGA API using the anuga. prefix:
    2122
    22 You can also import common file conversion routines like so:
    2323{{{
    24 from anuga.file_conversion import *
     24domain = anuga.Domain(...)
     25boundary = anuga.Reflective_boundary()
    2526}}}
    2627
    27 See the documentation for the list of functions and classes that are made available for import.
     28See the documentation for the list of functions and classes that are made available for import from the public API.
    2829
    2930== Deprecated Functionality Removed in ANUGA v1.2 ==