|  | 
| template<typename InputIterator > | 
|  | PlanePolyline3d (InputIterator first, InputIterator last) | 
|  | 
|  | PlanePolyline3d (const Pos3d &p1, const Pos3d &p2, const Pos3d &p3) | 
|  | Constructor. 
 | 
|  | 
|  | PlanePolyline3d (const Ref2d3d &, const Polyline2d &p=Polyline2d()) | 
|  | Constructor. 
 | 
|  | 
|  | PlanePolyline3d (const Ref3d3d &, const Polyline2d &p=Polyline2d()) | 
|  | Constructor. 
 | 
|  | 
|  | PlanePolyline3d (const GeomObj::list_Pos3d &) | 
|  | Constructor. 
 | 
|  | 
|  | PlanePolyline3d (const boost::python::list &) | 
|  | Constructor. 
 | 
|  | 
| virtual GeomObj * | getCopy (void) const | 
|  | 
| void | push_back (const Pos3d &p) | 
|  | 
| Pos3d | getFromPoint (void) const | 
|  | 
| Pos3d | getToPoint (void) const | 
|  | 
| PlanePolyline3d | offset (const GEOM_FT &d) const | 
|  | 
| Polygon3d | getBufferPolygon (const GEOM_FT &d, const size_t &numVertices=8) const | 
|  | 
| bool | empty (void) const | 
|  | Return true if there are no vertices. 
 | 
|  | 
| GEOM_FT | GetXMax (void) const | 
|  | 
| GEOM_FT | GetYMax (void) const | 
|  | 
| GEOM_FT | GetZMax (void) const | 
|  | 
| GEOM_FT | GetXMin (void) const | 
|  | 
| GEOM_FT | GetYMin (void) const | 
|  | 
| GEOM_FT | GetZMin (void) const | 
|  | 
| virtual unsigned int | getNumVertices (void) const | 
|  | 
| virtual unsigned int | getNumSegments (void) const | 
|  | 
| GEOM_FT | getLength (void) const | 
|  | Return the length of the object. 
 | 
|  | 
| std::vector< GEOM_FT > | getLengths (void) const | 
|  | 
| boost::python::list | getLengthsPy (void) const | 
|  | 
| GEOM_FT | getLengthUpTo (const Pos3d &) const | 
|  | Return the length along the polyline upto the given point. 
 | 
|  | 
| GEOM_FT | getLambda (const Pos3d &p) const | 
|  | 
| bool | isClosed (const GEOM_FT &tol=1e-6) const | 
|  | Returns true if the polyline is closed. 
 | 
|  | 
| const_iterator | getSegmentAtLength (const GEOM_FT &s) const | 
|  | Return an iterator pointing to the vertex that is just before the point at a distance "s" measured along the polyline from its origin.  More... 
 | 
|  | 
| int | getIndexOfSegmentAtLength (const GEOM_FT &s) const | 
|  | Return the index of the segment that lies at the point at a distance "s" measured along the polyline from its origin.  More... 
 | 
|  | 
| int | getIndexOfSegmentAtParam (const GEOM_FT &lambda) const | 
|  | Return the index of the segment that lies at the point at a distance "lambda*L" measured along the polyline from its origin.  More... 
 | 
|  | 
| const Pos3d | appendVertex (const Pos3d &) | 
|  | Append the projection of the vertex to the polyline. 
 | 
|  | 
| const Pos3d | appendVertexLeft (const Pos3d &) | 
|  | Append a vertex to the beginning of the polyline. 
 | 
|  | 
| void | insertVertex (const Pos3d &, const GEOM_FT &tol=1e-6) | 
|  | Insert the point argurment as vertex by splitting the nearest segment.  More... 
 | 
|  | 
| Pos3d | Vertice (unsigned int i) const | 
|  | Return the position of the i-th vertex. 
 | 
|  | 
| Pos3d | Vertice0 (unsigned int j) const | 
|  | Return the position of the i-th vertex (0 based: j=0..getNumVertices()-1) 
 | 
|  | 
| GeomObj::list_Pos3d | getVertexList (void) const | 
|  | Return a Python list containing the positions of the polyline vertices.  More... 
 | 
|  | 
| boost::python::list | getVertexListPy (void) const | 
|  | Return a Python list containing the positions of the polyline vertices.  More... 
 | 
|  | 
| Segment3d | getSegment0 (unsigned int i) const | 
|  | Return the i-th side (i between 0 and num_sides-1). 
 | 
|  | 
| Segment3d | getSegment (unsigned int i) const | 
|  | Return the i-th edge (i between 1 and num_sides). 
 | 
|  | 
| Polyline3d | getPolyline3d (void) const | 
|  | Return the corresponding 3D polyline. 
 | 
|  | 
| Pos3d | getPointAtLength (const GEOM_FT &) const | 
|  | Return the the point at a distance "s" measured along the polyline from its origin.  More... 
 | 
|  | 
| Vector3d | getIVectorAtLength (const GEOM_FT &) const | 
|  | Return the I vector of the segment that lies at the point at a distance "s" measured along the polyline from its origin.  More... 
 | 
|  | 
| Vector3d | getJVectorAtLength (const GEOM_FT &) const | 
|  | Return the J vector of the segment that lies at the point at a distance "s" measured along the polyline from its origin.  More... 
 | 
|  | 
| Vector3d | getKVectorAtLength (const GEOM_FT &) const | 
|  | Return the K vector of the segment that lies at the point at a distance "s" measured along the polyline from its origin.  More... 
 | 
|  | 
| VectorPos3d | Divide (int num_partes) const | 
|  | Return the points that results from the segment division.  More... 
 | 
|  | 
| boost::python::list | DividePy (int num_partes) const | 
|  | Return a Python list containing the points that results from the segment division.  More... 
 | 
|  | 
| VectorPos3d | Divide (const std::vector< double > &) const | 
|  | Return the points that divide the segments in the proportions being passed as parameter.  More... 
 | 
|  | 
| boost::python::list | DividePy (const boost::python::list &) const | 
|  | Return a Python list containing the points that results from the segment division.  More... 
 | 
|  | 
| void | swap (void) | 
|  | 
| Plane | getPlaneFromSide0 (unsigned int i) const | 
|  | 
| Plane | getPlaneFromSide (unsigned int i) const | 
|  | 
| Pos3d | getCenterOfMass (void) const | 
|  | Return the center of mass of the polyline. 
 | 
|  | 
| GEOM_FT | Ix (void) const | 
|  | Moment of inertia with respect to an axis parallel to the x axis passing through the center of mass.  More... 
 | 
|  | 
| GEOM_FT | Iy (void) const | 
|  | Moment of inertia with respect to an axis parallel to the y axis passing through the center of mass.  More... 
 | 
|  | 
| GEOM_FT | Iz (void) const | 
|  | Moment of inertia with respect to an axis parallel to the z axis passing through the center of mass.  More... 
 | 
|  | 
| GEOM_FT | GetMax (unsigned short int i) const | 
|  | Return the maximum value of the i-th coordinate. 
 | 
|  | 
| GEOM_FT | GetMin (unsigned short int i) const | 
|  | Return the minimum value of the i-th coordinate. 
 | 
|  | 
| bool | In (const Pos3d &p, const double &tol) const | 
|  | Return true if the point lies inside the polyline (i.  More... 
 | 
|  | 
| bool | TocaCuadrante (const int &) const | 
|  | Return true if alguno de los vertices toca el cuadrante que se pasa como parĂ¡metro.  More... 
 | 
|  | 
| Segment3d | getNearestSegment (const Pos3d &) const | 
|  | Return the nearest 2D segment.  More... 
 | 
|  | 
| Pos3d | Projection (const Pos3d &) const | 
|  | Return the projection of the given point into the polyline.  More... 
 | 
|  | 
| bool | intersects (const Line3d &) const | 
|  | Return true if the line intersects the polyline. 
 | 
|  | 
| GeomObj3d::list_Pos3d | getIntersection (const Line3d &) const | 
|  | Return the intersection with the line argument. 
 | 
|  | 
| bool | intersects (const Plane &) const | 
|  | Return true if the plane intersects the polyline. 
 | 
|  | 
| GeomObj3d::list_Pos3d | getIntersection (const Plane &) const | 
|  | Return the intersection with the plane argument. 
 | 
|  | 
| void | simplify (GEOM_FT epsilon, iterator it1, iterator it2) | 
|  | Douglas Peucker algorithm implementation.  More... 
 | 
|  | 
| void | simplify (GEOM_FT epsilon) | 
|  | 
| void | removeRepeated (const GEOM_FT &tol=0.0) | 
|  | Remove vertices that are closer than the given tolerance. 
 | 
|  | 
| void | removeBackwardSegments (const GEOM_FT &tol) | 
|  | Remove emove the vertices that generate backward segments.  More... 
 | 
|  | 
| PlanePolyline3d | getChunk (const Pos3d &, const short int &, const GEOM_FT &) const | 
|  | Assuming that p is a vertex of the polyline Return the chunk: from the beginning to p if sgn < 0 from p to the end if sgn >= 0. 
 | 
|  | 
| PlanePolyline3d | getLeftChunk (const Pos3d &, const GEOM_FT &tol) const | 
|  | Return the polyline chunk that goes from its beginning to the nearest vertex to p.  More... 
 | 
|  | 
| PlanePolyline3d | getRightChunk (const Pos3d &, const GEOM_FT &tol) const | 
|  | Return the polyline chunk that goes the nearest vertex to to p to its end.  More... 
 | 
|  | 
| boost::python::list | split (const Pos3d &) const | 
|  | 
| void | Print (std::ostream &os) const | 
|  | 
|  | D2to3d (void) | 
|  | Constructor. 
 | 
|  | 
| virtual bool | operator== (const D2to3d &) const | 
|  | Comparison operator. 
 | 
|  | 
| void | ThreePoints (const Pos3d &p1, const Pos3d &p2, const Pos3d &p3) | 
|  | 
| virtual unsigned short int | Dimension (void) const | 
|  | Return the dimension of the object: 0, 1, 2 or 3. 
 | 
|  | 
| Vector3d | getIVector (void) const | 
|  | Return the unary vector I expressed in global coordinates. 
 | 
|  | 
| Vector3d | getJVector (void) const | 
|  | Return the unary vector J expressed in global coordinates. 
 | 
|  | 
| Vector3d | getKVector (void) const | 
|  | Return the unary vector K expressed in global coordinates. 
 | 
|  | 
| Pos3d | to_3d (const Pos2d &) const | 
|  | Return the 3D point corresponding to the 2D point argument. 
 | 
|  | 
| Vector3d | to_3d (const Vector2d &) const | 
|  | Return the 3D vector corresponding to the 2D vector argument. 
 | 
|  | 
| Line3d | to_3d (const Line2d &) const | 
|  | Return the 3D line corresponding to the 2D line argument. 
 | 
|  | 
| Ray3d | to_3d (const Ray2d &) const | 
|  | Return the 3D ray corresponding to the 2D ray argument. 
 | 
|  | 
| Segment3d | to_3d (const Segment2d &) const | 
|  | Return the 3D segment corresponding to the 2D segment argument. 
 | 
|  | 
| Pos3dArray | to_3d (const Pos2dArray &) const | 
|  | 
| Pos2d | to_2d (const Pos3d &) const | 
|  | Return the 2D point corresponding to the 3D point argument. 
 | 
|  | 
| Vector2d | to_2d (const Vector3d &) const | 
|  | Return the 2D vector corresponding to the 3D vector argument. 
 | 
|  | 
| Line2d | to_2d (const Line3d &) const | 
|  | Return the 2D line corresponding to the 3D line argument. 
 | 
|  | 
| Ray2d | to_2d (const Ray3d &) const | 
|  | Return the 2D ray corresponding to the 3D ray argument. 
 | 
|  | 
| Segment2d | to_2d (const Segment3d &) const | 
|  | Return the 2D segment corresponding to the 3D segment argument. 
 | 
|  | 
| const Ref2d3d & | getRef (void) const | 
|  | 
| Plane | getPlane (void) const | 
|  | 
| void | Print (std::ostream &os) const | 
|  | 
| GEOM_FT | getPerimeter (void) const | 
|  | 
| virtual GEOM_FT | getArea (void) const | 
|  | Return the object area. 
 | 
|  | 
| virtual GEOM_FT | getVolume (void) const | 
|  | Return the volume of the object. 
 | 
|  | 
| virtual GEOM_FT | IArea (void) const | 
|  | 
| virtual GEOM_FT | dist (const Pos3d &p) const | 
|  | Return the distance from the point to this surface. 
 | 
|  | 
| virtual GEOM_FT | dist2 (const Pos3d &p) const | 
|  | Return the squared distance from the point to this surface. 
 | 
|  | 
| GEOM_FT | GetXMax (void) const | 
|  | 
| GEOM_FT | GetYMax (void) const | 
|  | 
| GEOM_FT | GetZMax (void) const | 
|  | 
| GEOM_FT | GetXMin (void) const | 
|  | 
| GEOM_FT | GetYMin (void) const | 
|  | 
| GEOM_FT | GetZMin (void) const | 
|  | 
| virtual void | XProjection (void) | 
|  | 
| virtual void | YProjection (void) | 
|  | 
| virtual void | ZProjection (void) | 
|  | 
| virtual Vector3d | Projection (const Vector3d &) const | 
|  | Return the projection onto the line.  More... 
 | 
|  | 
| Pos3d | getPMax (void) const | 
|  | 
| Pos3d | getPMin (void) const | 
|  | 
| BND3d | Bnd (void) const | 
|  | Return the boundary of the object. 
 | 
|  | 
| virtual bool | Out (const Pos3d &p, const double &tol=0.0) const | 
|  | Return true if the point lies outside the object. 
 | 
|  | 
| virtual GEOM_FT | getCenterOfMassFactor (void) const | 
|  | Return the factor used for the computation of the center of mass (1.0 by default).  More... 
 | 
|  | 
| virtual GEOM_FT | Pxy (void) const | 
|  | 
| virtual GEOM_FT | Pxz (void) const | 
|  | 
| virtual GEOM_FT | Pyz (void) const | 
|  | 
| GEOM_FT | I (const unsigned short int &i, const unsigned short int &j) const | 
|  | 
| GEOM_FT | I (const Pos3d &O, const Vector3d &e) const | 
|  | Return el moment of inertia with respect to the axis that passes through O with the direction of e.  More... 
 | 
|  | 
| GEOM_FT | I (const Line3d &r) const | 
|  | Return el moment of inertia with respect to the argument line. 
 | 
|  | 
| GEOM_FT | I (const unsigned short int i, const unsigned short int j, const Pos3d &o) const | 
|  | Return el moment of inertia (i,j) respect to the axis parallel to i through o.  More... 
 | 
|  | 
| GEOM_FT | IO (const Pos3d &o) const | 
|  | Return the polar moment of inertia with respect to the point o. 
 | 
|  | 
| FT_matrix | I (void) const | 
|  | Return the inertia tensor with respect to the center of mass of the object.  More... 
 | 
|  | 
| FT_matrix | I (const Pos3d &o) const | 
|  | Return the inertia tensor with respect to the point o. 
 | 
|  | 
|  | GeomObj (void) | 
|  | Constructor. 
 | 
|  | 
| virtual bool | hasCenterOfMass (void) const | 
|  | Return true if the object has a center of mass. 
 | 
|  | 
| GEOM_FT | getCenterOfMassArea (void) const | 
|  | Return the dimension used to compute the center of mass, as follows:  More... 
 | 
|  | 
| virtual void | Plot (Plotter &) const | 
|  | 
|  | ProtoGeom (void) | 
|  | False when solution is not possible: intersection of parallel planes.  More... 
 | 
|  | 
| void | setExists (bool e) | 
|  | 
| bool | exists (void) const | 
|  | 
| boost::python::dict | getPyDict (void) const | 
|  | Return a Python dictionary with the object members values. 
 | 
|  | 
| void | setPyDict (const boost::python::dict &) | 
|  | Set the values of the object members from a Python dictionary. 
 | 
|  | 
|  Public Member Functions inherited from CommandEntity | 
|  | CommandEntity (CommandEntity *owr=nullptr) | 
|  | Default constructor. 
 | 
|  | 
| CommandEntity * | Owner (void) | 
|  | Return a pointer to the object owner. 
 | 
|  | 
| const CommandEntity * | Owner (void) const | 
|  | Return un puntero al objeto propietario de ESTE. 
 | 
|  | 
| const StandardOutputWrapper & | getStandardOutputWrapper (void) const | 
|  | Return the regular output stream wrapper. 
 | 
|  | 
| StandardOutputWrapper & | getStandardOutputWrapper (void) | 
|  | Return the regular output stream wrapper. 
 | 
|  | 
| const std::string & | getLogFileName (void) const | 
|  | Returns log file name. 
 | 
|  | 
| void | setLogFileName (const std::string &) | 
|  | Sets log file name. 
 | 
|  | 
| const std::string & | getErrFileName (void) const | 
|  | Returns err file name. 
 | 
|  | 
| void | setErrFileName (const std::string &) | 
|  | Sets error file name. 
 | 
|  | 
| const std::string & | getOutputFileName (void) const | 
|  | Returns regular output file name. 
 | 
|  | 
| void | setOutputFileName (const std::string &) | 
|  | Sets regular output file name. 
 | 
|  | 
| boost::python::object | evalPy (boost::python::object dict, const std::string &) | 
|  | Return the Python object that results from evaluating the argument. 
 | 
|  | 
| boost::python::object | execPy (boost::python::object dict, const std::string &) | 
|  | Return the Python objects that results from executing the code in the string argument. 
 | 
|  | 
| boost::python::object | execFilePy (boost::python::object dict, const std::string &) | 
|  | Return the Python object that results from executing the code in the file. 
 | 
|  | 
|  | EntityWithProperties (EntityWithProperties *owr=nullptr) | 
|  | Default constructor. 
 | 
|  | 
| void | clearPyProps (void) | 
|  | Clear python properties map. 
 | 
|  | 
| bool | hasPyProp (const std::string &) | 
|  | Returns true if property exists. 
 | 
|  | 
| boost::python::object | getPyProp (const std::string &str) | 
|  | Return the Python object with the name being passed as parameter. 
 | 
|  | 
| void | setPyProp (std::string str, boost::python::object val) | 
|  | Sets/appends a value tho the Python object's dictionary. 
 | 
|  | 
| void | copyPropsFrom (const EntityWithProperties &) | 
|  | Copy the properties from the argument. 
 | 
|  | 
| boost::python::list | getPropNames (void) const | 
|  | Return the names of the object properties weightings. 
 | 
|  | 
| const PythonDict & | getPropertiesDict (void) const | 
|  | Return a std::map container with the properties of the object. 
 | 
|  | 
| boost::python::dict | getPyDict (void) const | 
|  | Return a Python dictionary containing the object members values. 
 | 
|  | 
| void | setPyDict (const boost::python::dict &) | 
|  | Set the values of the object members from a Python dictionary. 
 | 
|  | 
|  | EntityWithOwner (EntityWithOwner *owr=nullptr) | 
|  | Default constructor. 
 | 
|  | 
|  | EntityWithOwner (const EntityWithOwner &) | 
|  | Copy constructor. 
 | 
|  | 
| EntityWithOwner & | operator= (const EntityWithOwner &) | 
|  | Assignment operator. 
 | 
|  | 
| virtual bool | operator== (const EntityWithOwner &) const | 
|  | Comparison operator. 
 | 
|  | 
| virtual | ~EntityWithOwner (void) | 
|  | Virtual destructor. 
 | 
|  | 
| virtual std::string | getClassName (void) const | 
|  | Returns demangled class name. 
 | 
|  | 
| void | set_owner (EntityWithOwner *owr) | 
|  | Assigns the owner of the object. 
 | 
|  | 
| EntityWithOwner * | Owner (void) | 
|  | 
| const EntityWithOwner * | Owner (void) const | 
|  |