-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ahcorde <[email protected]> Signed-off-by: Ian Chen <[email protected]> Signed-off-by: Louise Poubel <[email protected]> Co-authored-by: Louise Poubel <[email protected]> Co-authored-by: Ian Chen <[email protected]>
- Loading branch information
1 parent
3584189
commit eefcdd9
Showing
24 changed files
with
977 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright (C) 2021 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef IGNITION_RENDERING_CAPSULE_HH_ | ||
#define IGNITION_RENDERING_CAPSULE_HH_ | ||
|
||
#include "ignition/rendering/config.hh" | ||
#include "ignition/rendering/Geometry.hh" | ||
#include "ignition/rendering/Object.hh" | ||
|
||
namespace ignition | ||
{ | ||
namespace rendering | ||
{ | ||
inline namespace IGNITION_RENDERING_VERSION_NAMESPACE { | ||
/// \class Capsule Capsule.hh ignition/rendering/Capsule | ||
/// \brief Geometry for a capsule shape. | ||
class IGNITION_RENDERING_VISIBLE Capsule : | ||
public virtual Geometry | ||
{ | ||
/// \brief Destructor | ||
public: virtual ~Capsule() { } | ||
|
||
/// \brief Set the radius of the capsule | ||
public: virtual void SetRadius(double _radius) = 0; | ||
|
||
/// \brief Set the length of the capsule | ||
public: virtual void SetLength(double _length) = 0; | ||
|
||
/// \brief Get the radius of the capsule | ||
public: virtual double Radius() const = 0; | ||
|
||
/// \brief Get the length of the capsule | ||
public: virtual double Length() const = 0; | ||
}; | ||
} | ||
} | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/* | ||
* Copyright (C) 2021 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef IGNITION_RENDERING_BASECAPSULE_HH_ | ||
#define IGNITION_RENDERING_BASECAPSULE_HH_ | ||
|
||
#include "ignition/rendering/Capsule.hh" | ||
#include "ignition/rendering/base/BaseObject.hh" | ||
|
||
namespace ignition | ||
{ | ||
namespace rendering | ||
{ | ||
inline namespace IGNITION_RENDERING_VERSION_NAMESPACE { | ||
/// \brief Base implementation of a Capsule Geometry | ||
template <class T> | ||
class BaseCapsule : | ||
public virtual Capsule, | ||
public virtual T | ||
{ | ||
// Documentation inherited | ||
protected: BaseCapsule(); | ||
|
||
// Documentation inherited | ||
public: virtual ~BaseCapsule(); | ||
|
||
// Documentation inherited | ||
public: virtual void SetRadius(double _radius) override; | ||
|
||
// Documentation inherited | ||
public: virtual void SetLength(double _length) override; | ||
|
||
// Documentation inherited | ||
public: virtual double Radius() const override; | ||
|
||
// Documentation inherited | ||
public: virtual double Length() const override; | ||
|
||
/// \brief Radius of the capsule | ||
protected: double radius = 0.5; | ||
|
||
/// \brief Length of the capsule | ||
protected: double length = 0.5; | ||
|
||
/// \brief Flag to indicate capsule properties have changed | ||
protected: bool capsuleDirty = false; | ||
}; | ||
|
||
///////////////////////////////////////////////// | ||
// BaseCapsule | ||
///////////////////////////////////////////////// | ||
template <class T> | ||
BaseCapsule<T>::BaseCapsule() | ||
{ | ||
} | ||
|
||
///////////////////////////////////////////////// | ||
template <class T> | ||
BaseCapsule<T>::~BaseCapsule() | ||
{ | ||
} | ||
|
||
///////////////////////////////////////////////// | ||
template <class T> | ||
void BaseCapsule<T>::SetRadius(double _radius) | ||
{ | ||
this->radius = _radius; | ||
this->capsuleDirty = true; | ||
} | ||
|
||
///////////////////////////////////////////////// | ||
template <class T> | ||
double BaseCapsule<T>::Radius() const | ||
{ | ||
return this->radius; | ||
} | ||
|
||
///////////////////////////////////////////////// | ||
template <class T> | ||
void BaseCapsule<T>::SetLength(double _length) | ||
{ | ||
this->length = _length; | ||
this->capsuleDirty = true; | ||
} | ||
|
||
///////////////////////////////////////////////// | ||
template <class T> | ||
double BaseCapsule<T>::Length() const | ||
{ | ||
return this->length; | ||
} | ||
} | ||
} | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Copyright (C) 2021 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef IGNITION_RENDERING_OGRE_OGRECAPSULE_HH_ | ||
#define IGNITION_RENDERING_OGRE_OGRECAPSULE_HH_ | ||
|
||
#include <memory> | ||
#include "ignition/rendering/base/BaseCapsule.hh" | ||
#include "ignition/rendering/ogre/OgreGeometry.hh" | ||
#include "ignition/rendering/ogre/OgreIncludes.hh" | ||
|
||
namespace Ogre | ||
{ | ||
class MovableObject; | ||
} | ||
|
||
namespace ignition | ||
{ | ||
namespace rendering | ||
{ | ||
inline namespace IGNITION_RENDERING_VERSION_NAMESPACE { | ||
// Forward declaration | ||
class OgreCapsulePrivate; | ||
|
||
/// \brief Ogre 2.x implementation of a Capsule Visual. | ||
class IGNITION_RENDERING_OGRE_VISIBLE OgreCapsule | ||
: public BaseCapsule<OgreGeometry> | ||
{ | ||
/// \brief Constructor | ||
protected: OgreCapsule(); | ||
|
||
/// \brief Destructor | ||
public: virtual ~OgreCapsule(); | ||
|
||
// Documentation inherited. | ||
public: virtual void Init() override; | ||
|
||
// Documentation inherited. | ||
public: virtual void Destroy() override; | ||
|
||
// Documentation inherited. | ||
public: virtual Ogre::MovableObject *OgreObject() const override; | ||
|
||
// Documentation inherited. | ||
public: virtual void PreRender() override; | ||
|
||
// Documentation inherited. | ||
public: virtual MaterialPtr Material() const override; | ||
|
||
// Documentation inherited. | ||
public: virtual void | ||
SetMaterial(MaterialPtr _material, bool _unique) override; | ||
|
||
/// \brief Update the capsule geometry in ogre | ||
private: void Update(); | ||
|
||
/// \brief Capsule should only be created by scene. | ||
private: friend class OgreScene; | ||
|
||
/// \brief Private data class | ||
private: std::unique_ptr<OgreCapsulePrivate> dataPtr; | ||
}; | ||
} | ||
} | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.