FiberVISH 0.2
Fish - The Fiber Bundle API for the Vish Visualization Shell
LineSetOperator.hpp
1#ifndef __FISH_SPINE_LINESETOPERATOR_HPP
2#define __FISH_SPINE_LINESETOPERATOR_HPP
3
4#include "fishspineDllApi.h"
5
6#include <grid/types/LineSet.hpp>
7#include "SkeletonOperator.hpp"
8
9namespace Wizt
10{
11
19
20
21
28class fishspine_API OldLineSetOperator : public Fish<Fiber::Grid>
29 , public Fish<Fiber::Slice>
30{
31public:
32
34 OldLineSetOperator(VObject*what, const string&s = "grid", int el=2);
35
37
38
55 {
56 static Fiber::SkeletonExistence InspectionProperty()
57 {
58 return Fiber::SkeletonExistence( Fiber::LineSet::ID() );
59 }
60 };
61};
62
63} // namespace
64
65#endif // __FISH_SPINE_LINESETOPERATOR_HPP
66
67
68
69
An iterator with an optional DataCreator, which is just a class to intercept creation of data along a...
Definition CreativeIterator.hpp:34
A concrete Grid Property which looks for the existence of a Skeleton of the specified dimension and i...
Definition BundleProperty.hpp:76
Former base class for Fish modules operating on Grid objects that are LineSets.
Definition LineSetOperator.hpp:30
Template base class for Fish modules operating on Grid objects that provide a specific skeleton,...
Definition SkeletonOperator.hpp:73
note: cannot derive from FloatingSkeletonRenderer as long as independent base class TriangleRenderer ...
Object creation: A Grid Inspector to be used as an argument of the GridActor template class.
Definition LineSetOperator.hpp:55