X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Constraint.cpp;h=c3d2d00934a6d06569f8e0d46a80126e0db89516;hb=64fc7e4fdd63997ec7a502b233ef5f88186d5bbb;hp=6269e321360a820bbc535036a8db942b849a8dc0;hpb=507f658f34fc6c42f48fb83a8fa916c6f0e33fd3;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Constraint.cpp b/src/SketchPlugin/SketchPlugin_Constraint.cpp index 6269e3213..c3d2d0093 100644 --- a/src/SketchPlugin/SketchPlugin_Constraint.cpp +++ b/src/SketchPlugin/SketchPlugin_Constraint.cpp @@ -1,42 +1,12 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + // File: SketchPlugin_Constraint.cpp // Created: 08 May 2014 // Author: Artem ZHIDKOV #include "SketchPlugin_Constraint.h" -#include -#include - -const boost::shared_ptr& SketchPlugin_Constraint::preview() -{ - return getPreview(); -} - -void SketchPlugin_Constraint::addConstrainedObject( - const std::string& theAttrID, - const boost::shared_ptr& theReference) +SketchPlugin_Constraint::SketchPlugin_Constraint() { - if (!data()->attribute(theAttrID).get()) - data()->addAttribute(theAttrID, theReference->type()); - boost::dynamic_pointer_cast( - data()->attribute(theAttrID))->setValue(theReference->value()); -} -void SketchPlugin_Constraint::addConstrainedObject( - const std::string& theAttrID, - const boost::shared_ptr& theReference) -{ - if (!data()->attribute(theAttrID).get()) - data()->addAttribute(theAttrID, theReference->type()); - boost::dynamic_pointer_cast( - data()->attribute(theAttrID))->setValue(theReference->value()); -} - -void SketchPlugin_Constraint::getSketchParameters( - std::list< boost::shared_ptr >& theParams) -{ - theParams.push_back(sketch()->data()->attribute(SKETCH_ATTR_ORIGIN)); - theParams.push_back(sketch()->data()->attribute(SKETCH_ATTR_DIRX)); - theParams.push_back(sketch()->data()->attribute(SKETCH_ATTR_DIRY)); - theParams.push_back(sketch()->data()->attribute(SKETCH_ATTR_NORM)); }