OpenCMISS-Zinc C++ API Documentation
Classes | Namespaces | Functions
fieldlogicaloperators.hpp File Reference
#include "opencmiss/zinc/fieldlogicaloperators.h"
#include "opencmiss/zinc/field.hpp"
#include "opencmiss/zinc/fieldmodule.hpp"

Go to the source code of this file.

Classes

class  OpenCMISS::Zinc::FieldAnd
 A field whose component values are 1 if that component of source_field_one AND source_field_two is non-zero, 0 otherwise. More...
 
class  OpenCMISS::Zinc::FieldEqualTo
 A field whose component values are 1 if that component of source_field_one EQUALS that component of source_field_two, 0 otherwise. More...
 
class  OpenCMISS::Zinc::FieldGreaterThan
 A field whose component values are 1 if that component of source_field_one is greater than the component value in source_field_two. More...
 
class  OpenCMISS::Zinc::FieldIsDefined
 A field returning 1 (true) at locations where the source field is defined and 0 (false) elsewhere. More...
 
class  OpenCMISS::Zinc::FieldLessThan
 A field whose component values are 1 if that component of source_field_one is less than the component value in source_field_two. More...
 
class  OpenCMISS::Zinc::FieldOr
 A field whose component values are 1 if that component of source_field_one OR source_field_two is non-zero, 0 otherwise. More...
 
class  OpenCMISS::Zinc::FieldNot
 A field whose component values are 1 if that component of the source_field is zero, 0 otherwise; effectively a component-wise logical not operator. More...
 
class  OpenCMISS::Zinc::FieldXor
 A field whose component values are 1 if that component of source_field_one OR source_field_two is non-zero (but not both), 0 otherwise. More...
 

Namespaces

 OpenCMISS
 The OpenCMISS namespace.
 
 OpenCMISS::Zinc
 The OpenCMISS::Zinc namespace.
 

Functions

FieldAnd OpenCMISS::Zinc::operator&& (const Field &operand1, const Field &operand2)
 
FieldGreaterThan OpenCMISS::Zinc::operator> (const Field &operand1, const Field &operand2)
 
FieldLessThan OpenCMISS::Zinc::operator< (const Field &operand1, const Field &operand2)
 
FieldOr OpenCMISS::Zinc::operator|| (const Field &operand1, const Field &operand2)
 
FieldNot OpenCMISS::Zinc::operator! (const Field &operand)