diff --git a/source/RobotAPI/interface/CMakeLists.txt b/source/RobotAPI/interface/CMakeLists.txt
index cbfa0be0f10dc4a6467ad8b2902f87b0ac5355ac..76f16c7817f43ef69a4b29d6efb5f200d5726212 100644
--- a/source/RobotAPI/interface/CMakeLists.txt
+++ b/source/RobotAPI/interface/CMakeLists.txt
@@ -12,6 +12,7 @@ set(SLICE_FILES
     observers/ObserverFilters.ice
 
     core/PoseBase.ice
+    core/PointWithNormal.ice
     core/LinkedPoseBase.ice
     core/FramedPoseBase.ice
     core/RobotState.ice
diff --git a/source/RobotAPI/interface/core/PointWithNormal.ice b/source/RobotAPI/interface/core/PointWithNormal.ice
new file mode 100644
index 0000000000000000000000000000000000000000..46311439bdc97c6b76855ae96367ba69cb1f462e
--- /dev/null
+++ b/source/RobotAPI/interface/core/PointWithNormal.ice
@@ -0,0 +1,61 @@
+/*
+* This file is part of ArmarX.
+*
+* ArmarX is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License version 2 as
+* published by the Free Software Foundation.
+*
+* ArmarX is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program. If not, see <http://www.gnu.org/licenses/>.
+*
+* @package    ArmarX::RobotAPI
+* @author     Martin Miller
+* @copyright  2015 Humanoids Group, KIT
+* @license    http://www.gnu.org/licenses/gpl-2.0.txt
+*             GNU General Public License
+*/
+
+#ifndef _ARMARX_ROBOTAPI_POINTWITHNORMAL_SLICE_
+#define _ARMARX_ROBOTAPI_POINTWITHNORMAL_SLICE_
+
+#include <ArmarXCore/interface/observers/VariantBase.ice>
+#include <ArmarXCore/interface/observers/Filters.ice>
+
+module armarx
+{
+    /**
+    * [PointsWithNormalBase] defines a 3D point with normal.
+    */
+    class PointWithNormalBase extends VariantDataClass
+    {
+        float px = zeroInt;
+        float py = zeroInt;
+        float pz = zeroInt;
+
+        float nx = zeroInt;
+        float ny = zeroInt;
+        float nz = zeroInt;
+    };
+
+    /**
+    * [FramedPointWithNormalBase] defines a PointWithNormal with regard to an agent and a frame within the agent.
+    * If agent is empty and frame is set to armarx::GlobalFrame, PointWithNormal is defined in global frame.
+    * @param frame Name of frame.
+    * @param frame Name of agent.
+    */
+    ["cpp:virtual"]
+    class FramedPointWithNormalBase extends PointWithNormalBase
+    {
+        string frame;
+        string agent;
+    };
+
+
+};
+
+#endif
diff --git a/source/RobotAPI/libraries/core/CMakeLists.txt b/source/RobotAPI/libraries/core/CMakeLists.txt
index dce297b52bdf82120268d655789b05010270f9f8..c2d56b38db79dd9829c81e202607712783625fed 100644
--- a/source/RobotAPI/libraries/core/CMakeLists.txt
+++ b/source/RobotAPI/libraries/core/CMakeLists.txt
@@ -25,6 +25,8 @@ set(LIB_FILES
     Pose.cpp
     FramedPose.cpp
     LinkedPose.cpp
+    PointWithNormal.cpp
+    FramedPointWithNormal.cpp
     RobotStatechartContext.cpp
     checks/ConditionCheckMagnitudeChecks.cpp
     observerfilters/PoseMedianOffsetFilter.cpp
@@ -40,6 +42,8 @@ set(LIB_HEADERS
     Pose.h
     FramedPose.h
     LinkedPose.h
+    PointWithNormal.h
+    FramedPointWithNormal.h
     RobotStatechartContext.h
     observerfilters/PoseMedianFilter.h
     observerfilters/PoseMedianOffsetFilter.h
diff --git a/source/RobotAPI/libraries/core/FramedPointWithNormal.cpp b/source/RobotAPI/libraries/core/FramedPointWithNormal.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..6c68805760a75192c404b8d96a82126e78da895a
--- /dev/null
+++ b/source/RobotAPI/libraries/core/FramedPointWithNormal.cpp
@@ -0,0 +1,188 @@
+/*
+* This file is part of ArmarX.
+*
+* ArmarX is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License version 2 as
+* published by the Free Software Foundation.
+*
+* ArmarX is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program. If not, see <http://www.gnu.org/licenses/>.
+*
+* @author     Martin Miller (martin dot miller at student dot kit dot edu)
+* @copyright  http://www.gnu.org/licenses/gpl-2.0.txt
+*             GNU General Public License
+*/
+
+#include "FramedPointWithNormal.h"
+
+#include <VirtualRobot/Robot.h>
+#include <VirtualRobot/LinkedCoordinate.h>
+#include <VirtualRobot/LinkedCoordinate.h>
+#include <VirtualRobot/VirtualRobot.h>
+
+#include <RobotAPI/libraries/core/remoterobot/RemoteRobot.h>
+
+using namespace armarx;
+
+
+
+FramedPointWithNormal::FramedPointWithNormal()
+{
+}
+
+FramedPointWithNormal::FramedPointWithNormal(const FramedPointWithNormal& source) :
+    IceUtil::Shared(source),
+    PointWithNormalBase(source),
+    FramedPointWithNormalBase(source)
+{
+}
+
+FramedPointWithNormal::FramedPointWithNormal(const Eigen::Vector3f& position, const Eigen::Vector3f& normal, const std::string& frame, const std::string& agent) :
+    PointWithNormal(position, normal)
+{
+    this->frame = frame;
+    this->agent = agent;
+
+}
+
+FramedPointWithNormal::FramedPointWithNormal(const PointWithNormal& pointWithNormal, const std::string& frame, const std::string& agent) :
+    FramedPointWithNormal(pointWithNormal.positionToEigen(), pointWithNormal.normalToEigen(), frame, agent)
+{
+}
+
+FramedPointWithNormal::FramedPointWithNormal(Ice::Float px, ::Ice::Float py, ::Ice::Float pz, Ice::Float nx, ::Ice::Float ny, ::Ice::Float nz, const std::string& frame, const std::string& agent) :
+    PointWithNormal(px, py, pz, nx, ny, nz)
+{
+    this->frame = frame;
+    this->agent = agent;
+}
+
+std::string FramedPointWithNormal::getFrame() const
+{
+    return frame;
+}
+
+
+void FramedPointWithNormal::changeFrame(const VirtualRobot::RobotPtr& robot, const std::string& newFrame)
+{
+    FramedPosition  framedPos(positionToEigen(), frame, agent);
+    FramedDirection framedDir(normalToEigen(), frame, agent);
+
+    framedPos.changeFrame(robot, newFrame);
+    framedDir.changeFrame(robot, newFrame);
+    this->px = framedPos.x;
+    this->py = framedPos.y;
+    this->pz = framedPos.z;
+
+    this->nx = framedDir.x;
+    this->ny = framedDir.y;
+    this->nz = framedDir.z;
+}
+
+void FramedPointWithNormal::changeToGlobal(const SharedRobotInterfacePrx& referenceRobot)
+{
+    VirtualRobot::RobotPtr sharedRobot(new RemoteRobot(referenceRobot));
+    changeFrame(sharedRobot, GlobalFrame);
+}
+
+void FramedPointWithNormal::changeToGlobal(const VirtualRobot::RobotPtr& referenceRobot)
+{
+    changeFrame(referenceRobot, GlobalFrame);
+}
+
+Eigen::Vector3f FramedPointWithNormal::positionToGlobalEigen(const SharedRobotInterfacePrx& referenceRobot) const
+{
+    return getFramedPosition().toGlobalEigen(referenceRobot);
+}
+
+Eigen::Vector3f FramedPointWithNormal::normalToGlobalEigen(const SharedRobotInterfacePrx& referenceRobot) const
+{
+    return getFramedNormal().toGlobalEigen(referenceRobot);
+}
+
+Eigen::Vector3f FramedPointWithNormal::positionToGlobalEigen(const VirtualRobot::RobotPtr& referenceRobot) const
+{
+    return getFramedPosition().toGlobalEigen(referenceRobot);
+}
+
+Eigen::Vector3f FramedPointWithNormal::normalToGlobalEigen(const VirtualRobot::RobotPtr& referenceRobot) const
+{
+    return getFramedNormal().toGlobalEigen(referenceRobot);
+}
+
+
+FramedPointWithNormalPtr FramedPointWithNormal::toRootFrame(const SharedRobotInterfacePrx& referenceRobot) const
+{
+    return new FramedPointWithNormal(positionToRootEigen(referenceRobot), normalToRootEigen(referenceRobot), frame, agent);
+}
+
+FramedPointWithNormalPtr FramedPointWithNormal::toRootFrame(const VirtualRobot::RobotPtr& referenceRobot) const
+{
+    return new FramedPointWithNormal(positionToRootEigen(referenceRobot), normalToRootEigen(referenceRobot), frame, agent);
+}
+
+Eigen::Vector3f FramedPointWithNormal::positionToRootEigen(const SharedRobotInterfacePrx& referenceRobot) const
+{
+    return getFramedPosition().toRootEigen(referenceRobot);
+}
+
+Eigen::Vector3f FramedPointWithNormal::normalToRootEigen(const SharedRobotInterfacePrx& referenceRobot) const
+{
+    return getFramedNormal().toRootEigen(referenceRobot);
+}
+
+Eigen::Vector3f FramedPointWithNormal::positionToRootEigen(const VirtualRobot::RobotPtr& referenceRobot) const
+{
+    return getFramedPosition().toRootEigen(referenceRobot);
+}
+
+Eigen::Vector3f FramedPointWithNormal::normalToRootEigen(const VirtualRobot::RobotPtr& referenceRobot) const
+{
+    return getFramedNormal().toRootEigen(referenceRobot);
+}
+
+FramedPosition FramedPointWithNormal::getFramedPosition() const
+{
+    return FramedPosition(positionToEigen(), frame, agent);
+}
+
+FramedDirection FramedPointWithNormal::getFramedNormal() const
+{
+    return FramedDirection(normalToEigen(), frame, agent);
+}
+
+
+std::string FramedPointWithNormal::output(const Ice::Current& c) const
+{
+    std::stringstream s;
+    s << PointWithNormal::output(c) << std::endl << "frame: " << getFrame() << (agent.empty() ? "" : (" agent: " + agent));
+    return s.str();
+}
+
+
+void FramedPointWithNormal::serialize(const ObjectSerializerBasePtr& serializer, const Ice::Current&) const
+{
+    AbstractObjectSerializerPtr obj = AbstractObjectSerializerPtr::dynamicCast(serializer);
+    PointWithNormal::serialize(serializer);
+    obj->setString("frame", frame);
+    obj->setString("agent", agent);
+
+}
+
+void FramedPointWithNormal::deserialize(const ObjectSerializerBasePtr& serializer, const Ice::Current&)
+{
+    AbstractObjectSerializerPtr obj = AbstractObjectSerializerPtr::dynamicCast(serializer);
+    PointWithNormal::deserialize(serializer);
+    frame = obj->getString("frame");
+
+    if (obj->hasElement("agent"))
+    {
+        agent = obj->getString("agent");
+    }
+}
+
diff --git a/source/RobotAPI/libraries/core/FramedPointWithNormal.h b/source/RobotAPI/libraries/core/FramedPointWithNormal.h
new file mode 100644
index 0000000000000000000000000000000000000000..a1e60b9b170041f6bc90588da08928acc03b3399
--- /dev/null
+++ b/source/RobotAPI/libraries/core/FramedPointWithNormal.h
@@ -0,0 +1,110 @@
+/*
+* This file is part of ArmarX.
+*
+* ArmarX is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License version 2 as
+* published by the Free Software Foundation.
+*
+* ArmarX is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program. If not, see <http://www.gnu.org/licenses/>.
+*
+* @author     Martin Miller (martin dot miller at student dot kit dot edu)
+* @copyright  http://www.gnu.org/licenses/gpl-2.0.txt
+*             GNU General Public License
+*/
+
+#ifndef ARMARX_RobotAPI_FramedPointWithNormal_H
+#define ARMARX_RobotAPI_FramedPointWithNormal_H
+
+
+#include "PointWithNormal.h"
+
+#include <VirtualRobot/Robot.h>
+#include <VirtualRobot/LinkedCoordinate.h>
+#include <VirtualRobot/LinkedCoordinate.h>
+#include <VirtualRobot/VirtualRobot.h>
+
+#include <RobotAPI/interface/core/RobotState.h>
+#include "FramedPose.h"
+
+namespace armarx
+{
+    namespace VariantType
+    {
+        // variant types
+        const VariantTypeId FramedPointWithNormal = Variant::addTypeName("::armarx::FramedPointWithNormalBase");
+    }
+
+    class FramedPointWithNormal;
+    typedef IceInternal::Handle<FramedPointWithNormal> FramedPointWithNormalPtr;
+
+    class FramedPointWithNormal :
+        virtual public FramedPointWithNormalBase,
+        virtual public PointWithNormal
+    {
+    public:
+        FramedPointWithNormal();
+        FramedPointWithNormal(const FramedPointWithNormal& source);
+        FramedPointWithNormal(const Eigen::Vector3f& position, const Eigen::Vector3f& normal, const std::string& frame, const std::string& agent);
+        FramedPointWithNormal(const PointWithNormal& pointWithNormal, const std::string& frame, const std::string& agent);
+        FramedPointWithNormal(Ice::Float px, ::Ice::Float py, ::Ice::Float pz, Ice::Float nx, ::Ice::Float ny, ::Ice::Float nz, const std::string& frame, const std::string& agent);
+
+        std::string getFrame() const;
+        void changeFrame(const VirtualRobot::RobotPtr& robot, const std::string& newFrame);
+
+        void changeToGlobal(const SharedRobotInterfacePrx& referenceRobot);
+        void changeToGlobal(const VirtualRobot::RobotPtr& referenceRobot);
+        FramedPointWithNormalPtr toGlobal(const SharedRobotInterfacePrx& referenceRobot) const;
+        FramedPointWithNormalPtr toGlobal(const VirtualRobot::RobotPtr& referenceRobot) const;
+        Eigen::Vector3f positionToGlobalEigen(const SharedRobotInterfacePrx& referenceRobot) const;
+        Eigen::Vector3f normalToGlobalEigen(const SharedRobotInterfacePrx& referenceRobot) const;
+        Eigen::Vector3f positionToGlobalEigen(const VirtualRobot::RobotPtr& referenceRobot) const;
+        Eigen::Vector3f normalToGlobalEigen(const VirtualRobot::RobotPtr& referenceRobot) const;
+        FramedPointWithNormalPtr toRootFrame(const SharedRobotInterfacePrx& referenceRobot) const;
+        FramedPointWithNormalPtr toRootFrame(const VirtualRobot::RobotPtr& referenceRobot) const;
+        Eigen::Vector3f positionToRootEigen(const SharedRobotInterfacePrx& referenceRobot) const;
+        Eigen::Vector3f normalToRootEigen(const SharedRobotInterfacePrx& referenceRobot) const;
+        Eigen::Vector3f positionToRootEigen(const VirtualRobot::RobotPtr& referenceRobot) const;
+        Eigen::Vector3f normalToRootEigen(const VirtualRobot::RobotPtr& referenceRobot) const;
+
+        FramedPosition getFramedPosition() const;
+        FramedDirection getFramedNormal() const;
+
+        // inherited from VariantDataClass
+        Ice::ObjectPtr ice_clone() const
+        {
+            return this->clone();
+        }
+        VariantDataClassPtr clone(const Ice::Current& c = ::Ice::Current()) const
+        {
+            return new FramedPointWithNormal(*this);
+        }
+        std::string output(const Ice::Current& c = ::Ice::Current()) const;
+        VariantTypeId getType(const Ice::Current& c = ::Ice::Current()) const
+        {
+            return VariantType::FramedPointWithNormal;
+        }
+        bool validate(const Ice::Current& c = ::Ice::Current())
+        {
+            return true;
+        }
+
+        friend std::ostream& operator<<(std::ostream& stream, const FramedPointWithNormal& rhs)
+        {
+            stream << "FramedPointWithNormal: " << std::endl << rhs.output() << std::endl;
+            return stream;
+        }
+
+    public: // serialization
+        virtual void serialize(const armarx::ObjectSerializerBasePtr& serializer, const ::Ice::Current& = ::Ice::Current()) const;
+        virtual void deserialize(const armarx::ObjectSerializerBasePtr& serializer, const ::Ice::Current& = ::Ice::Current());
+
+    };
+}
+
+#endif // armarx_core_FramedPointWithNormal
diff --git a/source/RobotAPI/libraries/core/PointWithNormal.cpp b/source/RobotAPI/libraries/core/PointWithNormal.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..c72a02eca8d29dff15f3b30d4712c8bf8b8550b4
--- /dev/null
+++ b/source/RobotAPI/libraries/core/PointWithNormal.cpp
@@ -0,0 +1,107 @@
+/*
+* This file is part of ArmarX.
+*
+* ArmarX is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License version 2 as
+* published by the Free Software Foundation.
+*
+* ArmarX is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program. If not, see <http://www.gnu.org/licenses/>.
+*
+* @author     Martin Miller (martin dot miller at student dot kit dot edu)
+* @copyright  http://www.gnu.org/licenses/gpl-2.0.txt
+*             GNU General Public License
+*/
+
+#include "PointWithNormal.h"
+
+using namespace armarx;
+using namespace Eigen;
+
+PointWithNormal::PointWithNormal()
+{
+    px = 0;
+    py = 0;
+    pz = 0;
+
+    nx = 0;
+    ny = 0;
+    nz = 0;
+}
+
+PointWithNormal::PointWithNormal(const Vector3f& position, const Vector3f& normal)
+{
+    px = position(0);
+    py = position(1);
+    pz = position(2);
+
+    nx = normal(0);
+    ny = normal(1);
+    nz = normal(2);
+}
+
+
+PointWithNormal::PointWithNormal(::Ice::Float px, ::Ice::Float py, ::Ice::Float pz, ::Ice::Float nx, ::Ice::Float ny, ::Ice::Float nz)
+{
+    this->px = px;
+    this->py = py;
+    this->pz = pz;
+
+    this->nx = nx;
+    this->ny = ny;
+    this->nz = nz;
+}
+
+Vector3f PointWithNormal::positionToEigen() const
+{
+    Vector3f p;
+    p << this->px, this->py, this->pz;
+    return p;
+}
+
+Vector3f PointWithNormal::normalToEigen() const
+{
+    Vector3f n;
+    n << this->nx, this->ny, this->nz;
+    return n;
+}
+
+
+std::string PointWithNormal::output(const Ice::Current& c) const
+{
+    Eigen::IOFormat vecfmt(Eigen::FullPrecision, 0, "", ", ", "", "", "(", ")");
+    std::stringstream s;
+    s << positionToEigen().format(vecfmt) << ", " << normalToEigen().format(vecfmt);
+    return s.str();
+}
+
+void PointWithNormal::serialize(const ObjectSerializerBasePtr& serializer, const ::Ice::Current&) const
+{
+    AbstractObjectSerializerPtr obj = AbstractObjectSerializerPtr::dynamicCast(serializer);
+
+    obj->setFloat("px", px);
+    obj->setFloat("py", py);
+    obj->setFloat("pz", pz);
+
+    obj->setFloat("nx", nx);
+    obj->setFloat("ny", ny);
+    obj->setFloat("nz", nz);
+}
+
+void PointWithNormal::deserialize(const ObjectSerializerBasePtr& serializer, const ::Ice::Current& c)
+{
+    AbstractObjectSerializerPtr obj = AbstractObjectSerializerPtr::dynamicCast(serializer);
+
+    px = obj->getFloat("px");
+    py = obj->getFloat("py");
+    pz = obj->getFloat("pz");
+
+    nx = obj->getFloat("nx");
+    ny = obj->getFloat("ny");
+    nz = obj->getFloat("nz");
+}
diff --git a/source/RobotAPI/libraries/core/PointWithNormal.h b/source/RobotAPI/libraries/core/PointWithNormal.h
new file mode 100644
index 0000000000000000000000000000000000000000..f295e69f65f55b85f7ef5787ff054b9c92695880
--- /dev/null
+++ b/source/RobotAPI/libraries/core/PointWithNormal.h
@@ -0,0 +1,85 @@
+/*
+* This file is part of ArmarX.
+*
+* ArmarX is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License version 2 as
+* published by the Free Software Foundation.
+*
+* ArmarX is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program. If not, see <http://www.gnu.org/licenses/>.
+*
+* @author     Martin Miller (martin dot miller at student dot kit dot edu)
+* @copyright  http://www.gnu.org/licenses/gpl-2.0.txt
+*             GNU General Public License
+*/
+
+#ifndef ARMARX_RobotAPI_PointWithNormal_H
+#define ARMARX_RobotAPI_PointWithNormal_H
+
+
+#include <RobotAPI/interface/core/PointWithNormal.h>
+#include <ArmarXCore/observers/variant/Variant.h>
+#include <ArmarXCore/observers/AbstractObjectSerializer.h>
+
+#include <Eigen/Core>
+#include <Eigen/Geometry>
+
+#include <sstream>
+
+namespace armarx
+{
+    namespace VariantType
+    {
+        // variant types
+        const VariantTypeId PointWithNormal = Variant::addTypeName("::armarx::PointWithNormalBase");
+    }
+
+    class PointWithNormal:
+        public virtual PointWithNormalBase
+    {
+
+    public:
+        PointWithNormal();
+        PointWithNormal(const Eigen::Vector3f& position, const Eigen::Vector3f& normal);
+        PointWithNormal(::Ice::Float px, ::Ice::Float py, ::Ice::Float pz, ::Ice::Float nx, ::Ice::Float ny, ::Ice::Float nz);
+
+        virtual Eigen::Vector3f positionToEigen() const;
+        virtual Eigen::Vector3f normalToEigen() const;
+
+        // inherited from VariantDataClass
+        Ice::ObjectPtr ice_clone() const
+        {
+            return this->clone();
+        }
+        VariantDataClassPtr clone(const Ice::Current& c = ::Ice::Current()) const
+        {
+            return new PointWithNormal(*this);
+        }
+        std::string output(const Ice::Current& c = ::Ice::Current()) const;
+        VariantTypeId getType(const Ice::Current& c = ::Ice::Current()) const
+        {
+            return VariantType::PointWithNormal;
+        }
+        bool validate(const Ice::Current& c = ::Ice::Current())
+        {
+            return true;
+        }
+
+        friend std::ostream& operator<<(std::ostream& stream, const PointWithNormal& rhs)
+        {
+            stream << "PointWithNormal: " << std::endl << rhs.output() << std::endl;
+            return stream;
+        }
+
+    public: // serialization
+        virtual void serialize(const armarx::ObjectSerializerBasePtr& serializer, const ::Ice::Current& = ::Ice::Current()) const;
+        virtual void deserialize(const armarx::ObjectSerializerBasePtr& serializer, const ::Ice::Current& = ::Ice::Current());
+    };
+}
+
+#endif // armarx_core_PointWithNormal