Package dx :: Module isosurface_3D :: Class Iso3D
[hide private]
[frames] | no frames]

Class Iso3D

source code


Instance Methods [hide private]
 
__init__(self, relax)
3D isosurface class.
source code
 
config(self)
Function for creating the OpenDX program configuration file.
source code
 
create_map(self)
Function for creating a 3D map.
source code
 
create_point(self)
Function for creating a sphere at a given position within the 3D map.
source code
 
general(self)
Function for creating the OpenDX .general file for a 3D map.
source code
 
get_date(self)
Function for creating a date string.
source code
 
program(self)
Function for creating the OpenDX program for a 3D map.
source code

Inherited from base_map.Base_Map: map_space

Method Details [hide private]

__init__(self, relax)
(Constructor)

source code 

3D isosurface class.

Overrides: base_map.Base_Map.__init__

create_point(self)

source code 
Function for creating a sphere at a given position within the 3D map.

The formula used to calculate the coordinate position is:

                    V - L
    coord =   Inc * -----
                    U - L

where:
    V is the coordinate or parameter value.
    L is the lower bound value.
    U is the upper bound value.
    Inc is the number of increments.

Both a data file and .general file will be created.