FiberVISH 0.2
Fish - The Fiber Bundle API for the Vish Visualization Shell
FComputeNormals.hpp
1#ifndef __FISH_COMPUTE_NORMALS_HPP
2#define __FISH_COMPUTE_NORMALS_HPP
3
4#include "fishboneDllApi.h"
5
6#include <ocean/plankton/VCotask.hpp>
7#include <field/Field.hpp>
8
9namespace Wizt
10{
11
19{
20 RefPtr<Fiber::Field> CoordField,
21 CellField,
22
23 VertexNormalField,
24 CellNormalField;
25
27
28 void run() override;
29
30 void clear();
31};
32
33} // namespace Wizt
34
35#endif // __FISH_COMPUTE_NORMALS_HPP
An iterator with an optional DataCreator, which is just a class to intercept creation of data along a...
Definition CreativeIterator.hpp:34
note: cannot derive from FloatingSkeletonRenderer as long as independent base class TriangleRenderer ...
A computational state to compute normals of a surface, possibly asynchroneously in a thread.
Definition FComputeNormals.hpp:19