#include <FN_field.hh>
Inherits blender::NonMovable, and blender::NonCopyable.
Utility class that makes it easier to evaluate fields.
Definition at line 338 of file FN_field.hh.
◆ FieldEvaluator() [1/2]
Takes mask by pointer because the mask has to live longer than the evaluator.
Definition at line 360 of file FN_field.hh.
◆ FieldEvaluator() [2/2]
| blender::fn::FieldEvaluator::FieldEvaluator |
( |
const FieldContext & | context, |
|
|
const int64_t | size ) |
|
inline |
Construct a field evaluator for all indices less than size.
Definition at line 366 of file FN_field.hh.
◆ ~FieldEvaluator()
| blender::fn::FieldEvaluator::~FieldEvaluator |
( |
| ) |
|
|
inline |
◆ add() [1/3]
| int blender::fn::FieldEvaluator::add |
( |
Field< T > | field, |
|
|
VArray< T > * | varray_ptr ) |
|
inline |
- Parameters
-
| field | Field to add to the evaluator. |
| varray_ptr | Once evaluate is called, the resulting virtual array will be will be assigned to the given position. |
- Returns
- Index of the field in the evaluator which can be used in the get_evaluated methods.
Definition at line 429 of file FN_field.hh.
◆ add() [2/3]
| int blender::fn::FieldEvaluator::add |
( |
GField | field | ) |
|
- Returns
- Index of the field in the evaluator which can be used in the get_evaluated methods.
Definition at line 767 of file field.cc.
◆ add() [3/3]
◆ add_with_destination() [1/4]
- Parameters
-
| field | Field to add to the evaluator. |
| dst | Mutable span that the evaluated result for this field is be written into. |
- Note
- When the output may only be used as a single value, the version of this function with a virtual array result array should be used.
Definition at line 416 of file FN_field.hh.
◆ add_with_destination() [2/4]
◆ add_with_destination() [3/4]
- Parameters
-
| field | Field to add to the evaluator. |
| dst | Mutable span that the evaluated result for this field is be written into. |
- Note
- When the output may only be used as a single value, the version of this function with a virtual array result array should be used.
Definition at line 751 of file field.cc.
◆ add_with_destination() [4/4]
- Parameters
-
| field | Field to add to the evaluator. |
| dst | Mutable virtual array that the evaluated result for this field is be written into. |
Definition at line 743 of file field.cc.
◆ evaluate()
| void blender::fn::FieldEvaluator::evaluate |
( |
| ) |
|
Evaluate all fields on the evaluator. This can only be called once.
Definition at line 788 of file field.cc.
◆ get_evaluated() [1/2]
| VArray< T > blender::fn::FieldEvaluator::get_evaluated |
( |
const int | field_index | ) |
|
|
inline |
◆ get_evaluated() [2/2]
| const GVArray & blender::fn::FieldEvaluator::get_evaluated |
( |
const int | field_index | ) |
const |
|
inline |
◆ get_evaluated_as_mask()
| IndexMask blender::fn::FieldEvaluator::get_evaluated_as_mask |
( |
int | field_index | ) |
|
Retrieve the output of an evaluated boolean field and convert it to a mask, which can be used to avoid calculations for unnecessary elements later on. The evaluator will own the indices in some cases, so it must live at least as long as the returned mask.
Definition at line 809 of file field.cc.
◆ get_evaluated_selection_as_mask()
| IndexMask blender::fn::FieldEvaluator::get_evaluated_selection_as_mask |
( |
| ) |
const |
◆ set_selection()
| void blender::fn::FieldEvaluator::set_selection |
( |
Field< bool > | selection | ) |
|
|
inline |
The selection field is evaluated first to determine which indices of the other fields should be evaluated. Calling this method multiple times will just replace the previously set selection field. Only the elements selected by both this selection and the selection provided in the constructor are calculated. If no selection field is set, it is assumed that all indices passed to the constructor are selected.
Definition at line 385 of file FN_field.hh.
The documentation for this class was generated from the following files: