uniform_scalar_field, uniform_vector_field, image_field, image_field_rgb, image_field_argb, volume_field, rect_scalar_field, rect_vector_field, struct_scalar_field, struct_vector_field


Synopsis

field mappers which generate a field given arrays describing the mesh and data. These macros are simple combinations of other modules. These macros simplify the process of generating field data by reducing the amount of data you must supply to create a field. The inputs and outputs for these macros are documented with the submodules listed here:

 

 

Scalar

 

Vector

 

Uniform

uniform_scalar_field: uniform_mesh + node_scalar

uniform_vector_field: uniform_mesh + node_vector

Rectilinear

rect_scalar_field: rect_mesh + node_scalar

rect_vector_field: rect_mesh + node_vector

Structured

struct_scalar_field: struct_mesh + node_scalar

struct_vector_field: struct_mesh + node_vector

Special

volume: 3D uniform_mesh + node_scalar

image_field: 2D uniform_mesh + node_scalar

image_field_rgb: 2D uniform_mesh + rgb_data

image_field_argb: 2D uniform_mesh + argb_data

 

File

v/fld_map.v

See also

Related modules