combine_mesh_data
Synopsis
combine a mesh and some node data to produce a field
Input Port
in_mesh
|
Mesh
|
in_nd
|
Node_Data
|
Parameters
Output Port
out
|
Mesh+Node_Data = merge(in_mesh, in_nd);
|
out_obj
|
output renderable object
|
Description
combine_mesh_data combines a mesh and some node data. A Node_Data object represents the values of some dataset at the node points of a field, while the Mesh represents the locations of that field's nodes in space.
This macro simplifies the process of generating field data by reducing the amount of data you must supply to create a field. Usually this macro is used to combine the output of a mesh mapper with the output of one or more data mappers.
Input
in_mesh
Mesh. This input is the Mesh part of the result.
in_nd
Node_Data. This input is the Node_Data part of the result.
Parameters
Output Port
out
Mesh+Node_Data. This contains the two inputs, merged.
obj
Output renderable object corresponding to out.
Example
Not available
File
v/fld_map.v
See also related modules