|
| Polyline3d (void) |
| Default constructor.
|
|
| Polyline3d (const GeomObj::list_Pos3d &) |
| Constructor.
|
|
| Polyline3d (const Pos3dList &) |
| Constructor.
|
|
| Polyline3d (const boost::python::list &) |
| Constructor (Python interface).
|
|
virtual bool | operator== (const Polyline3d &) const |
| Comparison operator.
|
|
virtual GeomObj * | getCopy (void) const |
|
virtual void | Move (const Vector3d &) |
| Moves the polyline.
|
|
const GeomObj::list_Pos3d & | getVertices (void) const |
| Return the list of the vertices.
|
|
const GeomObj::list_Pos3d & | getVertexList (void) const |
| Return the list of the vertices.
|
|
boost::python::list | getVertexListPy (void) const |
| Return a Python list containing the positions of the polygon vertices. More...
|
|
size_t | getNumVertices (void) const |
|
size_t | getNumSegments (void) const |
|
void | setVertices (const boost::python::list &) |
| Set the polyline vertices from the given Python list.
|
|
const Pos3d * | appendVertex (const Pos3d &) |
| Append a vertex to the polyline.
|
|
const Pos3d * | appendVertexLeft (const Pos3d &) |
| Append a vertex to the beginning of the polyline.
|
|
virtual bool | In (const Pos3d &p, const double &tol=0.0) const |
| Return true if the point is in the polyline.
|
|
virtual GEOM_FT | dist2 (const Pos3d &p) const |
| Return the squared distance to the polyline.
|
|
GEOM_FT | dist (const Pos3d &p) const |
| Return the distance from the point to the segment.
|
|
virtual GEOM_FT | Ix (void) const |
| Return the moment of inertia about the x axis.
|
|
virtual GEOM_FT | Iy (void) const |
| Return the moment of inertia about the y axis.
|
|
virtual GEOM_FT | Iz (void) const |
| Return the moment of inertia about the z axis.
|
|
GEOM_FT | getCurvatureAtVertex (const_iterator) const |
| Return the approximate curvature of the polyline at the vertex pointed by the iterator argument. More...
|
|
GEOM_FT | getCurvatureAtLength (const GEOM_FT &) const |
| Return the approximate curvature of the polyline at the the point at a distance "s" measured along the polyline from its origin. More...
|
|
Vector3d | getCurvatureVectorAtVertex (const_iterator) const |
| Return the approximate curvature of the polyline at the vertex pointed by the iterator argument. More...
|
|
std::vector< Vector3d > | getCurvatureVectorAtVertices (void) const |
| Return the approximate curvature of the polyline at each of its vertices. More...
|
|
Vector3d | getCurvatureVectorAtLength (const GEOM_FT &) const |
| Return the approximate curvature vector of the polyline at the the point at a distance "s" measured along the polyline from its origin. More...
|
|
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...
|
|
virtual GEOM_FT | getLength (void) const |
| Return the length of the object.
|
|
virtual GEOM_FT | getLengthUpTo (const Pos3d &) const |
| Return the length along the polyline upto the given point.
|
|
GEOM_FT | getLambda (const Pos3d &p) const |
| Return the lambda parameter for the given point: p= getFromPoint()+lambda*VDir()
|
|
virtual GEOM_FT | GetMax (unsigned short int i) const |
| Return the maximum value of the i-th coordinate.
|
|
virtual GEOM_FT | GetMin (unsigned short int i) const |
| Return the minimum value of the i-th coordinate.
|
|
Polyline3d | GetMayores (unsigned short int i, const GEOM_FT &d) const |
| Return a Polyline3d with the vertices whose i-th coordinate is greater than d. More...
|
|
Polyline3d | GetMenores (unsigned short int i, const GEOM_FT &d) const |
| Return a Polyline3d with the vertices whose i-th coordinate is smaller than d. More...
|
|
Segment3d | getSegment (const list_Pos3d::const_iterator &) const |
| Return the segment pointed by the iterator.
|
|
Segment3d | getSegment (const size_t &) const |
| Return the i-th segment (firt on has index 1).
|
|
std::vector< Segment3d > | getSegments (void) const |
| Return a vector containing the consecutive segments of the polyline.
|
|
const_iterator | getNearestSegmentIter (const Pos3d &) const |
| Return the nearest segment to the argument.
|
|
int | getNearestSegmentIndex (const Pos3d &) const |
| Return the index of the nearest 3D segment. More...
|
|
Segment3d | getNearestSegment (const Pos3d &) const |
| Return the nearest 3D segment. More...
|
|
Pos3d | Projection (const Pos3d &) const |
| Return the projection of the given point into the polyline. More...
|
|
std::deque< const_iterator > | getIntersectionIters (const Plane &) const |
| Return the iterators to the origin vertices of the polyline segments where the intersection with the plane occur. More...
|
|
list_Pos3d | getIntersection (const Plane &) const |
| Return the points of intersection of the polyline with the argument. More...
|
|
std::deque< Polyline3d > | clip (const HalfSpace3d &, const GEOM_FT &tol=0.0) const |
| Return the polyline chunks that result from clipping this polyline with the given half space. More...
|
|
boost::python::list | clipPy (const HalfSpace3d &, const GEOM_FT &tol=0.0) const |
|
void | insertVertex (const Pos3d &, const GEOM_FT &tol=1e-6) |
| Insert the point argurment as vertex by splitting the nearest segment. More...
|
|
Polyline3d | 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.
|
|
Polyline3d | getLeftChunk (const Pos3d &, const GEOM_FT &tol) const |
| Return the polyline chunk that goes from its beginning to the nearest vertex to p. More...
|
|
Polyline3d | 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 |
| Return the two polylines that result from splitting this one on the point nearest to the argument. More...
|
|
Pos3d | getCenterOfMass (void) const |
|
iterator | getFarthestPointFromSegment (iterator it1, iterator it2, GEOM_FT &pMaxDist) |
|
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.
|
|
void | Print (std::ostream &stream) const |
|
virtual unsigned short int | Dimension (void) const |
| Return the dimension of the object 0, 1, 2 or 3.
|
|
virtual GEOM_FT | getArea (void) const |
| Return the object area.
|
|
virtual GEOM_FT | getVolume (void) const |
| Return the volume of the object.
|
|
std::vector< std::pair< Pos3d, GEOM_FT > > | sortPointsAlong (const GeomObj3d::list_Pos3d &) const |
| Return the given points sorted by its parameter along the line (assuming they are on the line) in the form of a list of (position, lambda) pairs. More...
|
|
boost::python::list | sortPointsAlongPy (const boost::python::list &) const |
| Return the given points sorted by its parameter along the line (assuming they are on the line) in the form of a list of (position, lambda) pairs. More...
|
|
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 |
|
virtual GEOM_FT | IArea (void) 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 |
|
| PolyPos (const std::deque< pos > &dq_pos) |
|
pos | getFromPoint (void) const |
|
pos | getToPoint (void) const |
|
bool | operator== (const PolyPos< pos > &other) const |
|
pos * | Agrega (const pos &p) |
|
void | Agrega (const PolyPos< pos > &p) |
|
void | AgregaSiNuevo (const PolyPos< pos > &p) |
|
template<class InputIterator > |
void | extend (InputIterator first, InputIterator last) |
| Append the vertices between [first,last) to thebefore end of the list. More...
|
|
void | AgregaSiNuevo (const pos &) |
| Appends the point to the list (if not already there).
|
|
const_iterator | find (const pos &p) const |
|
iterator | find (const pos &p) |
|
bool | In (const pos &p) const |
| Return true if the points is on en la lista.
|
|
void | close (void) |
| Close the point list (insert the first point as its last one)
|
|
bool | isClosed (const GEOM_FT &tol=1e-6) const |
| True if dist(lastPoint,firstPoint)< tol*length.
|
|
GEOM_FT | getLength (void) const |
| Return the length of the PolyPos.
|
|
std::vector< GEOM_FT > | getLengths (void) const |
| Return the lengths corresponding to each vertex.
|
|
boost::python::list | getLengthsPy (void) const |
| Return the lengths corresponding to each vertex in a Python list.
|
|
GEOM_FT | getLengthUntilVertex (const_iterator) const |
| Return the length of the PolyPos until the vertex pointed by the iterator. More...
|
|
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...
|
|
boost::python::list | getIthCoordinates (unsigned short i) const |
| Return the list of values for j-th coordinate.
|
|
GEOM_FT | GetMax (unsigned short i) const |
| Return the maximum value of j-th coordinate.
|
|
GEOM_FT | GetMin (unsigned short i) const |
| Return the minimum value of j-th coordinate.
|
|
PolyPos | GetMayores (unsigned short int i, const GEOM_FT &d) const |
|
PolyPos | GetMenores (unsigned short int i, const GEOM_FT &d) const |
|
pos | getCenterOfMass (void) const |
| Return the center of mass del polígono.
|
|
pos | getWeightedCenterOfMass (const std::deque< GEOM_FT > &) const |
| Return the center of mass del polígono.
|
|
PolyPos< pos > | getSwap (void) const |
| Return a list with the elements in reverse order.
|
|
void | swap (void) |
|
std::deque< GEOM_FT > & | GetSeparaciones (void) const |
| Compute the distance from each point to the nearest one.
|
|
GEOM_FT | GetSeparacionMedia (void) const |
| Return the average distance between points.
|
|
iterator | getNearestPoint (const pos &) |
| Returns the nearest point from those of the list.
|
|
const_iterator | getNearestPoint (const pos &) const |
| Returns the nearest point from those of the list.
|
|
iterator | getFarthestPoint (const pos &) |
| Returns the farthest point from those of the list.
|
|
const_iterator | getFarthestPoint (const pos &) const |
| Returns the farthest point from those of the list.
|
|
void | simplify (GEOM_FT epsilon, iterator it1, iterator it2) |
| Douglas Peucker algorithm implementation. More...
|
|
void | simplify (GEOM_FT epsilon) |
| Douglas Peucker algorithm implementation. More...
|
|
PolyPos< pos > | getSimplified (GEOM_FT epsilon) const |
| ! More...
|
|
void | removeRepeated (const GEOM_FT &tol=0.0) |
| remove repeated vertexes. More...
|
|
void | removeBackwardSegments (const GEOM_FT &tol) |
| remove backward segments. More...
|
|
void | Cat (const PolyPos< pos > &l) |
|
template<class inputIterator > |
void | Cat (inputIterator begin, inputIterator end) |
| Insert the objects between [first,last).
|
|