TOC PREV NEXT INDEX

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

Example

Not available

File

v/fld_map.v

See also related modules

tri_mesh, quad_mesh, polytri_mesh
node_scalar, node_vector
radius_data, rgb_data, argb_data, node_colors, node_normals, node_uv, node_uvw
point_mesh, line_mesh, line_disjoint_mesh, polyline_mesh

TOC PREV NEXT INDEX