SHAPER 9.16.0
SketchPlugin_ConstraintDistanceHorizontal.h
1// Copyright (C) 2017-2026 CEA, EDF
2//
3// This library is free software; you can redistribute it and/or
4// modify it under the terms of the GNU Lesser General Public
5// License as published by the Free Software Foundation; either
6// version 2.1 of the License, or (at your option) any later version.
7//
8// This library is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11// Lesser General Public License for more details.
12//
13// You should have received a copy of the GNU Lesser General Public
14// License along with this library; if not, write to the Free Software
15// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20// File: SketchPlugin_ConstraintDistanceHorizontal.h
21// Created: 2 May 2017
22// Author: Artem ZHIDKOV
23
24#ifndef SketchPlugin_ConstraintDistanceHorizontal_H_
25#define SketchPlugin_ConstraintDistanceHorizontal_H_
26
27#include <SketchPlugin.h>
28#include <SketchPlugin_ConstraintDistanceAlongDir.h>
29
38{
39public:
41 inline static const std::string& ID()
42 {
43 static const std::string MY_CONSTRAINT_DISTANCE_ID("SketchConstraintDistanceHorizontal");
44 return MY_CONSTRAINT_DISTANCE_ID;
45 }
46
48 SKETCHPLUGIN_EXPORT virtual const std::string& getKind()
49 {
50 static std::string MY_KIND = SketchPlugin_ConstraintDistanceHorizontal::ID();
51 return MY_KIND;
52 }
53
56
57protected:
59 virtual double calculateCurrentDistance();
60
62 virtual void updateFlyoutPoint();
63};
64
65#endif
Feature for creation of a new constraint which defines a distance along direction.
Definition: SketchPlugin_ConstraintDistanceAlongDir.h:41
Feature for creation of a new constraint which defines a horizontal distance between two points.
Definition: SketchPlugin_ConstraintDistanceHorizontal.h:38
static const std::string & ID()
Distance constraint kind.
Definition: SketchPlugin_ConstraintDistanceHorizontal.h:41
virtual SKETCHPLUGIN_EXPORT const std::string & getKind()
Returns the kind of a feature.
Definition: SketchPlugin_ConstraintDistanceHorizontal.h:48
virtual void updateFlyoutPoint()
Update flyout point.
Definition: SketchPlugin_ConstraintDistanceHorizontal.cpp:49
virtual double calculateCurrentDistance()
Returns the current distance between the feature attributes.
Definition: SketchPlugin_ConstraintDistanceHorizontal.cpp:37
SketchPlugin_ConstraintDistanceHorizontal()
Use plugin manager for features creation.
Definition: SketchPlugin_ConstraintDistanceHorizontal.cpp:32