OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
PropertyBundleVisUnstructuredScalar.h
Go to the documentation of this file.
1#pragma once
2#include "PropertyBundle.h"
3
5
6class __declspec(dllexport) PropertyBundleVisUnstructuredScalar : public PropertyBundle
7{
8public:
9 virtual void SetProperties(EntityBase * thisObject) override;
10 virtual bool UpdatePropertyVisibility(EntityBase * thisObject) override;
11
12 bool is2dType(EntityBase* thisObject);
13
14private:
15 PropertiesVisUnstructuredScalar properties;
16 const std::string defaultCategory = "3D Visualization";
17 const std::string groupNameGeneral = "General";
18 const std::string groupNameIsosurfaces = "Isosurfaces";
19 const std::string groupNamePoints = "Points";
20 const std::string groupNameContour = "Contour";
21};