rendering/Conversions.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 Open Source Robotics Foundation
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 */
17 #ifndef GAZEBO_RENDERING_CONVERSIONS_HH_
18 #define GAZEBO_RENDERING_CONVERSIONS_HH_
19 
20 #include <ignition/math/Color.hh>
21 #include <ignition/math/Matrix4.hh>
22 #include <ignition/math/Quaternion.hh>
23 #include <ignition/math/Vector3.hh>
24 
26 
27 #include "gazebo/common/Color.hh"
29 #include "gazebo/util/system.hh"
30 
31 namespace gazebo
32 {
33  namespace rendering
34  {
37 
41  class GZ_RENDERING_VISIBLE Conversions
42  {
47  public: static Ogre::ColourValue Convert(const common::Color &_clr)
48  GAZEBO_DEPRECATED(9.0);
49 
53  public: static Ogre::ColourValue Convert(
54  const ignition::math::Color &_clr);
55 
59  public: static ignition::math::Color Convert(
60  const Ogre::ColourValue &_clr);
61 
65  public: static ignition::math::Vector3d ConvertIgn(
66  const Ogre::Vector3 &_v);
67 
71  public: static Ogre::Vector3 Convert(const ignition::math::Vector3d &_v);
72 
76  public: static ignition::math::Quaterniond ConvertIgn(
77  const Ogre::Quaternion &_q);
78 
82  public: static Ogre::Quaternion Convert(
83  const ignition::math::Quaterniond &_q);
84 
88  public: static ignition::math::Matrix4d ConvertIgn(
89  const Ogre::Matrix4 &_m);
90 
94  public: static Ogre::Matrix4 Convert(const ignition::math::Matrix4d &_m);
95 
99  public: static Ogre::Node::TransformSpace Convert(
100  const ReferenceFrame &_rf);
101 
105  public: static ReferenceFrame Convert(
106  const Ogre::Node::TransformSpace &_ts);
107  };
109  }
110 }
111 #endif
ReferenceFrame
Frame of reference.
Definition: RenderTypes.hh:244
GAZEBO_VISIBLE ignition::math::Vector3d ConvertIgn(const msgs::Vector3d &_v)
Convert a msgs::Vector3d to an ignition::math::Vector.
GAZEBO_VISIBLE msgs::Vector3d Convert(const ignition::math::Vector3d &_v)
Convert a ignition::math::Vector3 to a msgs::Vector3d.
Conversions Conversions.hh rendering/Conversions.hh.
Definition: rendering/Conversions.hh:41
Defines a color.
Definition: Color.hh:36
#define GAZEBO_DEPRECATED(version)
Definition: system.hh:328