OsgVectorFieldRepresentation.h
Go to the documentation of this file.
1 // This file is a part of the OpenSurgSim project.
2 // Copyright 2013, SimQuest Solutions Inc.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 
16 #ifndef SURGSIM_GRAPHICS_OSGVECTORFIELDREPRESENTATION_H
17 #define SURGSIM_GRAPHICS_OSGVECTORFIELDREPRESENTATION_H
18 
23 
24 #include <osg/Array>
25 #include <osg/Geometry>
26 #include <osg/LineWidth>
27 #include <osg/Point>
28 
29 namespace SurgSim
30 {
31 namespace Graphics
32 {
33 
34 SURGSIM_STATIC_REGISTRATION(OsgVectorFieldRepresentation);
35 
36 #if defined(_MSC_VER)
37 #pragma warning(push)
38 #pragma warning(disable:4250)
39 #endif
40 
43 {
44 public:
47  explicit OsgVectorFieldRepresentation(const std::string& name);
50 
52 
53  std::shared_ptr<VectorField> getVectorField() const override;
54 
55  void setLineWidth(double width) override;
56  double getLineWidth() const override;
57 
58  void setScale(double scale) override;
59  double getScale() const override;
60 
63  virtual void setPointSize(double size);
64 
67  virtual double getPointSize() const;
68 
69  void doUpdate(double dt) override;
70 
71  void updateVectorField(const VectorField& vectorfield) override;
72 
73 private:
74  void privateUpdate(const std::vector<DataStructures::Vertex<VectorFieldData>>& vertices);
75 
78  std::shared_ptr<SurgSim::Graphics::VectorField> m_vectorField;
79 
81 
83  osg::ref_ptr<osg::Vec3Array> m_vertexData;
84 
86  osg::ref_ptr<osg::Geometry> m_lineGeometry;
88  osg::ref_ptr<osg::Geometry> m_pointGeometry;
89 
91  osg::ref_ptr<osg::DrawArrays> m_drawArrays;
93  osg::ref_ptr<osg::DrawElementsUInt> m_drawPoints;
94 
96  osg::ref_ptr<osg::LineWidth> m_line;
98  osg::ref_ptr<osg::Point> m_point;
99 
101  osg::ref_ptr<osg::Vec4Array> m_colors;
102 
104  double m_scale;
105 };
106 
107 #if defined(_MSC_VER)
108 #pragma warning(pop)
109 #endif
110 
111 }; // Graphics
112 }; // SurgSim
113 
114 #endif // SURGSIM_GRAPHICS_OSGVECTORFIELDREPRESENTATION_H
SurgSim::Graphics::OsgVectorFieldRepresentation::getLineWidth
double getLineWidth() const override
Gets line width.
Definition: OsgVectorFieldRepresentation.cpp:174
SurgSim::Graphics::OsgVectorFieldRepresentation::OsgVectorFieldRepresentation
OsgVectorFieldRepresentation(const std::string &name)
Constructor.
Definition: OsgVectorFieldRepresentation.cpp:36
SurgSim::DataStructures::Vertices
Base class for mesh structures, handling basic vertex functionality.
Definition: Vertices.h:51
LockedContainer.h
SurgSim::Graphics::OsgVectorFieldRepresentation::m_scale
double m_scale
A scale to scale the length of vector.
Definition: OsgVectorFieldRepresentation.h:104
VectorFieldRepresentation.h
SurgSim::Graphics::OsgVectorFieldRepresentation::privateUpdate
void privateUpdate(const std::vector< DataStructures::Vertex< VectorFieldData >> &vertices)
Definition: OsgVectorFieldRepresentation.cpp:96
SurgSim::Graphics::OsgVectorFieldRepresentation::m_pointGeometry
osg::ref_ptr< osg::Geometry > m_pointGeometry
OSG::Geometry node holding OSG representation of vector starting points.
Definition: OsgVectorFieldRepresentation.h:88
SurgSim::Graphics::OsgVectorFieldRepresentation::getVectorField
std::shared_ptr< VectorField > getVectorField() const override
Gets the vector field.
Definition: OsgVectorFieldRepresentation.cpp:164
SurgSim::Graphics::VectorFieldRepresentation
Graphic representation of a vector field Each point/location, i.e.
Definition: VectorFieldRepresentation.h:30
SurgSim
Definition: CompoundShapeToGraphics.cpp:29
SurgSim::DataStructures::Vertex
Vertex structure for meshes.
Definition: Vertex.h:44
SurgSim::Framework::LockedContainer
A simple thread-safe data container that can support multiple writers and readers.
Definition: LockedContainer.h:54
SurgSim::Graphics::OsgVectorFieldRepresentation::getScale
double getScale() const override
Gets the scale applied to all vectors.
Definition: OsgVectorFieldRepresentation.cpp:184
SurgSim::Graphics::OsgVectorFieldRepresentation::m_line
osg::ref_ptr< osg::LineWidth > m_line
OSG::LineWidth for representing vector.
Definition: OsgVectorFieldRepresentation.h:96
SurgSim::Graphics::OsgVectorFieldRepresentation::doUpdate
void doUpdate(double dt) override
Definition: OsgVectorFieldRepresentation.cpp:82
SurgSim::Graphics::OsgVectorFieldRepresentation::m_vertexData
osg::ref_ptr< osg::Vec3Array > m_vertexData
OSG vertex data structure.
Definition: OsgVectorFieldRepresentation.h:83
SurgSim::Graphics::OsgVectorFieldRepresentation::SURGSIM_CLASSNAME
SURGSIM_CLASSNAME(SurgSim::Graphics::OsgVectorFieldRepresentation)
SurgSim::Graphics::OsgVectorFieldRepresentation::setScale
void setScale(double scale) override
Sets the scale to be applied to all vectors.
Definition: OsgVectorFieldRepresentation.cpp:179
SurgSim::Graphics::OsgVectorFieldRepresentation::updateVectorField
void updateVectorField(const VectorField &vectorfield) override
Updates the vector field in a threadsafe manner.
Definition: OsgVectorFieldRepresentation.cpp:159
SurgSim::Graphics::OsgVectorFieldRepresentation::m_drawArrays
osg::ref_ptr< osg::DrawArrays > m_drawArrays
An OSG::DrawArrays object specifying how vectors will be drawn.
Definition: OsgVectorFieldRepresentation.h:91
SurgSim::Graphics::OsgVectorFieldRepresentation::getPointSize
virtual double getPointSize() const
Gets the size of starting point of a vector.
Definition: OsgVectorFieldRepresentation.cpp:194
SurgSim::Graphics::OsgVectorFieldRepresentation::m_vectorField
std::shared_ptr< SurgSim::Graphics::VectorField > m_vectorField
Vector Field holds a list of vertices/points (X,Y,Z) in 3D space Each point is associated with a vect...
Definition: OsgVectorFieldRepresentation.h:78
SurgSim::Graphics::OsgVectorFieldRepresentation::setPointSize
virtual void setPointSize(double size)
Sets the size of point indicating the starting of vector.
Definition: OsgVectorFieldRepresentation.cpp:189
SurgSim::Graphics::OsgVectorFieldRepresentation::m_drawPoints
osg::ref_ptr< osg::DrawElementsUInt > m_drawPoints
An OSG::DrawElementUInt object specifying how vector starting points will be drawn.
Definition: OsgVectorFieldRepresentation.h:93
SurgSim::Graphics::OsgVectorFieldRepresentation::m_point
osg::ref_ptr< osg::Point > m_point
OSG::Point for representing vector starting point.
Definition: OsgVectorFieldRepresentation.h:98
SurgSim::Graphics::OsgVectorFieldRepresentation
OSG vector field representation, implements a VectorFieldRepresenation using OSG.
Definition: OsgVectorFieldRepresentation.h:42
VectorField.h
SurgSim::Graphics::OsgVectorFieldRepresentation::m_lineGeometry
osg::ref_ptr< osg::Geometry > m_lineGeometry
OSG::Geometry node holding OSG representation of vectors.
Definition: OsgVectorFieldRepresentation.h:86
string
string(TOUPPER ${DEVICE} DEVICE_UPPER_CASE) option(BUILD_DEVICE_$
Definition: CMakeLists.txt:38
SurgSim::Graphics::OsgVectorFieldRepresentation::setLineWidth
void setLineWidth(double width) override
Sets vector line width.
Definition: OsgVectorFieldRepresentation.cpp:169
SurgSim::Graphics::OsgVectorFieldRepresentation::~OsgVectorFieldRepresentation
~OsgVectorFieldRepresentation()
Destructor.
Definition: OsgVectorFieldRepresentation.cpp:78
SurgSim::Graphics::OsgVectorFieldRepresentation::m_colors
osg::ref_ptr< osg::Vec4Array > m_colors
OSG::Vec4Array to hold color for each vector.
Definition: OsgVectorFieldRepresentation.h:101
SurgSim::Graphics::OsgVectorFieldRepresentation::m_writeBuffer
SurgSim::Framework::LockedContainer< VectorField > m_writeBuffer
Definition: OsgVectorFieldRepresentation.h:80
OsgRepresentation.h
SurgSim::Graphics::OsgRepresentation
Base OSG implementation of a graphics representation.
Definition: OsgRepresentation.h:55