1#ifndef __FIBER_FIELD_BINARY_OPERATOR_HPP
2#define __FIBER_FIELD_BINARY_OPERATOR_HPP
4#include "ComputationalField.hpp"
32template <
class Operator,
class PrimaryValueType,
33 class SecondaryValueType = PrimaryValueType,
34 class ResultValueType = PrimaryValueType>
42 typedef ResultValueType result_type;
53 template <Dims_t Dims>
75 while( Index.inc(Size) );
An iterator with an optional DataCreator, which is just a class to intercept creation of data along a...
Definition CreativeIterator.hpp:34
Given a fragmented field of curvilinear coordinates, (3D array of coordinates), build a uniform Grid ...
Definition FAQ.dox:2
Wizt::VCreatorProperty< Wizt::VCreatorProperties::OPERATORNAME > Operator
Implementing a binary operation on two fields with on-demand computation per fragment and discarding ...
Definition BinaryOperator.hpp:36
BinaryOperator(const RefPtr< Field > &theSecondaryField)
The constructor, wants to know about the secondary field.
Definition BinaryOperator.hpp:49