All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
line_segment.h
1 /* Copyright (C) 2004-2015 MBSim Development Team
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16  *
17  * Contact: martin.o.foerg@googlemail.com
18  */
19 
20 #ifndef _LINE_SEGMENT_H_
21 #define _LINE_SEGMENT_H_
22 
23 #include "mbsim/contours/rigid_contour.h"
24 
25 #include "mbsim/utils/boost_parameters.h"
26 #include <mbsim/utils/openmbv_utils.h>
27 
28 namespace MBSim {
29 
36  class LineSegment : public MBSim::RigidContour {
37  public:
42  LineSegment(const std::string& name, double l, double t, Frame *R=0);
43 
44  LineSegment(const std::string& name, double l, Frame *R=0);
45 
46  LineSegment(const std::string& name="", Frame *R=0);
47 
48  /* INHERITED INTERFACE OF ELEMENT */
49  std::string getType() const { return "LineSegment"; }
50  virtual void init(InitStage stage);
51  /***************************************************/
52 
53  /* INHERITED INTERFACE OF CONTOUR */
54  virtual double getCurvature(const fmatvec::Vec2 &zeta) { return 0; }
55  /***************************************************/
56 
57  BOOST_PARAMETER_MEMBER_FUNCTION( (void), enableOpenMBV, tag, (optional (diffuseColor,(const fmatvec::Vec3&),"[-1;1;1]")(transparency,(double),0))) {
58  OpenMBVLine ombv(1,diffuseColor,transparency);
59  openMBVRigidBody=ombv.createOpenMBV();
60  }
61 
62  virtual void initializeUsingXML(xercesc::DOMElement *element);
63 
64  /* GETTER / SETTER */
65  void setLength(double length_) {length = length_; }
66  double getLength() const {return length; }
67  /***************************************************/
68 
69  private:
73  double length;
74 
75  };
76 }
77 
78 #endif /* _LINE_SEGMENT_H_ */
basic class for rigid contours
Definition: rigid_contour.h:37
LineSegment(const std::string &name, double l, double t, Frame *R=0)
constructor
Definition: line_segment.cc:33
std::string getType() const
Definition: line_segment.h:49
line segment with two bounds
Definition: line_segment.h:36
InitStage
The stages of the initialization.
Definition: element.h:97
double length
length of line segment
Definition: line_segment.h:73
std::string name
name of element
Definition: element.h:298
cartesian frame on bodies used for application of e.g. links and loads
Definition: frame.h:37
Frame * R
coordinate system of contour
Definition: rigid_contour.h:88
virtual void init(InitStage stage)
plots time series header
Definition: line_segment.cc:43

Impressum / Disclaimer / Datenschutz Generated by doxygen 1.8.5 Valid HTML