68 #include "domain/mesh/MeshComponent.h" 69 #include "NodeDispVectors.h" 70 #include "NodeVelVectors.h" 71 #include "NodeAccelVectors.h" 72 #include "utility/matrix/Matrix.h" 73 #include <boost/python/list.hpp> 83 class ContinuaReprComponent;
131 mutable Vector unbalLoadWithInertia;
134 mutable double tributary;
145 static std::deque<Matrix> theMatrices;
147 mutable std::set<ContinuaReprComponent *> connected;
149 std::map<int, std::set<int> > freeze_constraints;
150 ID get_node_lockers_tags(
void)
const;
151 std::vector<ID> get_constraints_tags(
void)
const;
152 void set_id_constraints(
const ID &,
const std::vector<ID> &);
155 Matrix get_element_stiff(
const ElementConstPtrSet &,
bool initial)
const;
156 Matrix get_constraints_stiff(
void)
const;
167 Node(
int tag,
int classTag);
168 Node(
int tag,
int ndof,
double Crd1);
169 Node(
int tag,
int ndof,
double Crd1,
double Crd2);
170 Node(
int tag,
int ndof,
double Crd1,
double Crd2,
double Crd3);
172 Node(
const Node &theCopy,
bool copyMass =
true);
211 const MeshEdge *
next(
const std::deque<MeshEdge> &,
const std::set<const MeshEdge *> &)
const;
213 const bool isDead(
void)
const;
214 const bool isAlive(
void)
const;
216 const bool isFree(
void)
const;
224 void fix(
const std::vector<int> &,
const std::vector<double> &);
228 virtual size_t getDim(
void)
const;
238 bool In(
const GeomObj3d &,
const double &factor= 1.0,
const double &tol= 0.0)
const;
239 bool In(
const GeomObj2d &,
const double &factor= 1.0,
const double &tol= 0.0)
const;
240 bool Out(
const GeomObj3d &,
const double &factor= 1.0,
const double &tol= 0.0)
const;
241 bool Out(
const GeomObj2d &,
const double &factor= 1.0,
const double &tol= 0.0)
const;
245 double getDist2(
const Pos2d &p,
bool initialGeometry=
true)
const;
246 double getDist(
const Pos2d &p,
bool initialGeometry=
true)
const;
247 double getDist2(
const Pos3d &p,
bool initialGeometry=
true)
const;
248 double getDist(
const Pos3d &p,
bool initialGeometry=
true)
const;
269 virtual int setTrialDispComponent(
double value,
int dof);
297 virtual int setR(
int row,
int col,
double Value);
310 inline int getNumModes(
void)
const 311 {
return theEigenvectors.
noCols(); }
358 boost::python::dict
getPyDict(
void)
const;
359 void setPyDict(
const boost::python::dict &);
361 std::set<SetBase *>
get_sets(
void)
const;
365 virtual void Print(std::ostream &s,
int flag = 0)
const;
391 Matrix getMassSensitivity(
void)
const;
392 virtual const Matrix &getDampSensitivity(
void)
const;
393 int getCrdsSensitivity(
void)
const;
394 int saveSensitivity(
Vector *v,
Vector *vdot,
Vector *vdotdot,
int gradNum,
int numGrads);
virtual int setTrialDisp(const Vector &)
Set the current trial displacement.
Definition: Node.cpp:1079
virtual int recvSelf(const Communicator &)
Receives object through the communicator argument.
Definition: Node.cpp:2026
Vector3d getEigenvectorDisp3dComponents(int) const
Return the eigenvector displacement components in a 3D vector.
Definition: Node.cpp:1644
virtual size_t getDim(void) const
Return the dimension of the node vector position (1,2 or 3).
Definition: Node.cpp:660
Vector3d get3dMomentComponents(const Vector &) const
Return the "moment/rotation" components in a 3d vector.
Definition: Node.cpp:2830
Pos3d getInitialPosition3d(void) const
Return the initial position of the node in 3D.
Definition: Node.cpp:710
Vectors that store trial and committed values of the node acceleration.
Definition: NodeAccelVectors.h:42
SFreedom_Constraint * fix(const SFreedom_Constraint &)
Introduce en the node una constraint como la being passed as parameter.
Definition: Node.cpp:581
Vector getEffectiveModalMasses(void) const
Returns the effective modal masses.
Definition: Node.cpp:1782
Vector3d get3dForceComponents(const Vector &) const
Return the "force/displacement" components in a 3d vector.
Definition: Node.cpp:2790
Vector getMaxModalVelocity(int mode, const double &) const
Return the maximal modal velocity for the mode being passed as parameter and the acceleration corresp...
Definition: Node.cpp:1809
virtual int setMass(const Matrix &theMass)
Set the mass matrix of the node.
Definition: Node.cpp:1448
Float vector abstraction.
Definition: Vector.h:94
boost::python::list getConnectedElementTags(void) const
Return a python list containing the tags of the elements that are connected with this node...
Definition: Node.cpp:2565
void disconnect(ContinuaReprComponent *el) const
Removes a component (element, constraint,...) from the connected component list.
Definition: Node.cpp:316
virtual int setTrialAccel(const Vector &)
Set the current trial acceleration.
Definition: Node.cpp:1097
Vector3d getReactionMoment3d(void) const
Return the reaction moment in a 3D vector.
Definition: Node.cpp:2773
virtual const Vector & getDisp(void) const
Returns the displacement of the node.
Definition: Node.cpp:1003
void copySetsFrom(const Node &)
Add this element to all the sets containing the given one.
Definition: Node.cpp:2074
virtual void zeroUnbalancedLoad(void)
Causes the node to zero out its unbalanced load vector.
Definition: Node.cpp:1172
Communication parameters between processes.
Definition: Communicator.h:66
Vector getCrds3d(void) const
Returns the node coordinates in a 3D space.
Definition: Node.cpp:680
virtual int sendSelf(Communicator &)
Send the object through the communicator argument.
Definition: Node.cpp:2003
boost::python::list getConnectedConstraintTags(void) const
Return a Python list with the tags of the constraints connected to the node.
Definition: Node.cpp:2397
virtual const Vector & getTrialDisp(void) const
Returns the trial value of the displacement of the node.
Definition: Node.cpp:1036
virtual Vector getEigenvector(int) const
Returns the eigenvector that corresponds to i-th mode.
Definition: Node.cpp:1597
double getReactionMoment2d(void) const
Return the reaction moment in a 2D vector.
Definition: Node.cpp:2870
void add_to_sets(std::set< SetBase *> &)
Adds the node to the sets being passed as parameters.
Definition: Node.cpp:2058
ElementConstPtrSet getConnectedElements(void) const
Return a set of pointers to the elements that are connected with this node.
Definition: Node.cpp:2466
Vector getMaxModalDisplacement(int mode, const double &) const
Returns the maximal modal displacement for the node being passed as parameter and the acceleration co...
Definition: Node.cpp:1802
Vector getAccelXYZ(void) const
Returns the XYZ components of the translational acceleration of the node.
Definition: Node.cpp:920
virtual int revertToStart()
Returns to the initial state.
Definition: Node.cpp:1343
Pos2d getEigenPosition2d(const double &, int) const
Return the "modal" position of the node scaled by factor: return initPos+ factor * getNormalizedEigen...
Definition: Node.cpp:1629
bool In(const GeomObj3d &, const double &factor=1.0, const double &tol=0.0) const
Returns true if the current position of the node scaled by factor: return initPos+ factor * nodDispla...
Definition: Node.cpp:825
SlidingVectorsSystem3d getReactionSlidingVectorsSystem3d(bool initialGeometry=true) const
Return the reaction in the form of a 3D sliding vectors system.
Definition: Node.cpp:2779
Posición en dos dimensiones.
Definition: Pos2d.h:41
virtual const Matrix & getEigenvectors(void) const
Returns the eigenvectors that correspond to the node.
Definition: Node.cpp:1593
Vector getDispXYZ(void) const
Returns the XYZ components of node displacement.
Definition: Node.cpp:904
Node * getCopy(void) const
Virtual constructor.
Definition: Node.cpp:324
Matrix getNormalizedEigenvectors(void) const
Returns a matrix with the eigenvectors as columns.
Definition: Node.cpp:1607
const double & getTributary(void) const
Return tributary value (length, area or volume).
Definition: Node.cpp:1421
bool checkReactionForce(const double &) const
Checks that reactions on the node correspond to constrained degrees of freedom.
Definition: Node.cpp:2981
Node(int classTag)
Default constructor.
Definition: Node.cpp:112
void clearEigenvectors(void)
Remove the stored eigenvectors.
Definition: Node.cpp:1622
int updateParameter(int parameterID, Information &info)
Updates the parameter identified by parameterID with info.
Definition: Node.cpp:2170
Pos2d getPosition2d(const Vector &) const
Return the 2D position obtained as: initPos+ factor * v.
Definition: Node.cpp:724
void resetTributary(void) const
Zeroes tributary (length, area or volume).
Definition: Node.cpp:1417
SlidingVectorsSystem2d getReactionSlidingVectorsSystem2d(bool initialGeometry=true) const
Return the reaction in the form of a 2D sliding vectors system.
Definition: Node.cpp:2876
Pos3d pos_node(const Node &nod, bool initialGeometry=true)
Return the 3D position of the node.
Definition: Node.cpp:988
virtual const Vector & getVel(void) const
Returns the velocity of the node.
Definition: Node.cpp:1012
virtual int incrTrialVel(const Vector &)
Increments the current trial velocity.
Definition: Node.cpp:1117
virtual void setDOF_GroupPtr(DOF_Group *theDOF_Grp)
Sets the DOF_Group pointer.
Definition: Node.cpp:631
Vector2d getReactionForce2d(void) const
Return the reaction force in a 2D vector.
Definition: Node.cpp:2866
boost::python::list getConnectedElementsPy(void)
Return a python list of pointers to the elements that are connected with this node.
Definition: Node.cpp:2535
boost::python::dict getPyDict(void) const
Return a Python dictionary with the object members values.
Definition: Node.cpp:1932
Base class for nodes and elements (mesh components).
Definition: MeshComponent.h:44
virtual int revertToLastCommit()
Returns to the last committed state.
Definition: Node.cpp:1328
int noCols() const
Returns the number of columns, numCols, of the Matrix.
Definition: Matrix.h:273
Vector that stores the dbTags of the class members.
Definition: DbTagData.h:44
virtual int setTrialVel(const Vector &)
Set the current trial velocity.
Definition: Node.cpp:1088
virtual int setR(int row, int col, double Value)
Sets the (row,col) entry of R to be equal to Value.
Definition: Node.cpp:1482
Vector getOmegaXYZ(void) const
Returns the XYZ components of the angular velocity of the node.
Definition: Node.cpp:916
bool Out(const GeomObj3d &, const double &factor=1.0, const double &tol=0.0) const
Returns true if the current position of the node scaled by factor: return initPos+ factor * nodDispla...
Definition: Node.cpp:843
virtual const Matrix & getMass(void) const
Return the mass matrix of the node.
Definition: Node.cpp:1370
Vector of integers.
Definition: ID.h:95
DbTagData & getDbTagData(void) const
Returns a vector to store the dbTags de los miembros of the clase.
Definition: Node.cpp:1876
const bool isAlive(void) const
True if node is active.
Definition: Node.cpp:334
virtual const Matrix & getDamp(void) const
Return the damping matrix of the node.
Definition: Node.cpp:1394
void connect(ContinuaReprComponent *el) const
Inserts a component (element, constraint,...) to the connected component list.
Definition: Node.cpp:305
bool checkReactionForceWithHelpers(const double &, const std::map< int, std::list< int > > &dofsAffectedByConstraints) const
Checks that reactions on the node correspond to constrained degrees of freedom using the help of the ...
Definition: Node.cpp:3043
size_t getNumberOfConnectedConstraints(void) const
Return the nunber of connected constraints.
Definition: Node.cpp:2264
Vector getAngularFrequencies(void) const
Returns the angular frequencies from the modal analysis.
Definition: Node.cpp:1581
const bool isDead(void) const
True if node is inactive.
Definition: Node.cpp:328
double getAccSensitivity(int dof, int gradNum) const
Return acceleration sensitivity.
Definition: Node.cpp:2254
virtual int incrTrialAccel(const Vector &)
Increments the current trial acceleration.
Definition: Node.cpp:1127
virtual const Vector & getIncrDeltaDisp(void) const
Return the incremental displacement.
Definition: Node.cpp:1067
virtual int commitState()
Commits the state of the node.
Definition: Node.cpp:1312
void setReaction(const Vector &)
Set the node reaction.
Definition: Node.cpp:2752
virtual int resetReactionForce(bool inclInertia)
Calculate the reactions in this node (used in Domain::calculateNodalReactions).
Definition: Node.cpp:3107
const NodalLoad * newLoad(const Vector &)
Create a new load on the node and put it in the current load pattern.
Definition: Node.cpp:1131
void setPos(const Pos3d &)
Sets the node position.
Definition: Node.cpp:961
double get2dMomentComponent(const Vector &) const
Return the "moment/rotation" components in a 2d vector.
Definition: Node.cpp:2920
virtual ~Node(void)
destructor
Definition: Node.cpp:570
Base de las clases Set y SetEstruct.
Definition: SetBase.h:51
const bool isFree(void) const
returns true if the node has no constraints.
Definition: Node.cpp:552
Vector en dos dimensiones.
Definition: Vector2d.h:41
void Move(const Vector3d &desplaz)
Moves the node (intended only for its use from XC::Set).
Definition: Node.cpp:3120
virtual const Vector & getTrialAccel(void) const
Returns the trial value of the acceleration of the node.
Definition: Node.cpp:1052
virtual int addInertiaLoadToUnbalance(const Vector &accel, double fact=1.0)
Adds inertial loads to the node unbalanced load vector.
Definition: Node.cpp:1217
double getDist(const Pos2d &p, bool initialGeometry=true) const
Returns the distance from the node to the point being passed as parameter.
Definition: Node.cpp:938
const ID & getDOFs(void) const
Gets the equation numbers corresponding to the node DOFS.
Definition: Node.cpp:644
virtual double getModalParticipationFactor(int mode) const
Returns the modal participation factor corresponding to i-th mode.
Definition: Node.cpp:1653
Vector getModalParticipationFactors(void) const
Returns the modal participation factors.
Definition: Node.cpp:1661
Base class for the two-dimensional geometric objects.
Definition: GeomObj2d.h:37
double getMassComponent(const int &) const
Return the mass matrix component for the DOF argument.
Definition: Node.cpp:1374
void melt_if_alive(void)
Deletes the constraint over the node DOFs previously created by the freeze method.
Definition: Node.cpp:517
void Transform(const TrfGeom &trf)
Applies to the node position the transformation being passed as parameter.
Definition: Node.cpp:980
Vector getMaxModalDisplacementForDOFs(int mode, const double &, const std::set< int > &dofs) const
Returns the maximal modal displacement on the DOFs and mode being passed as parameter and the acceler...
Definition: Node.cpp:1824
Vector getNormalizedEigenvector(int) const
Returns the eigenvector that corresponds to i-th mode normalized so the maximum values of the compone...
Definition: Node.cpp:1603
virtual int addUnbalancedLoad(const Vector &load, double fact=1.0)
Adds vector to the node unbalanced load.
Definition: Node.cpp:1183
virtual void Print(std::ostream &s, int flag=0) const
Prints node data.
Definition: Node.cpp:2084
Vector getDistributionFactor(int mode) const
Returns the distribution factor corresponding to the i-th mode.
Definition: Node.cpp:1733
Vector getMaxModalAcceleration(int mode, const double &) const
Return the maximal modal acceleration for the mode being passed as parameter and the acceleration cor...
Definition: Node.cpp:1816
virtual const Vector & getUnbalancedLoad(void) const
Returns unbalanced load vector.
Definition: Node.cpp:1278
int setParameter(const std::vector< std::string > &argv, Parameter ¶m)
Sets the value param to the parameter argv.
Definition: Node.cpp:2124
virtual const Vector & getAccel(void) const
Returns the acceleration of the node.
Definition: Node.cpp:1021
Pos2d getInitialPosition2d(void) const
Return the initial position of the node in 2D.
Definition: Node.cpp:698
Vectors to store trial and committed values («committed») on node displacements.
Definition: NodeDispVectors.h:42
Default tag.
Definition: DefaultTag.h:37
Matrix getDistributionFactors(void) const
Returns the matrix with the computed distribution factors placed by columns.
Definition: Node.cpp:1747
Pos3d getEigenPosition3d(const double &, int) const
Return the "modal" position of the node scaled by factor: return initPos+ factor * getNormalizedEigen...
Definition: Node.cpp:1637
int activateParameter(int parameterID)
Activates the parameter identified by parameterID.
Definition: Node.cpp:2198
boost::python::list getConnectedConstraintsPy(void)
Return a Python list of pointers to the constraints connected to the node.
Definition: Node.cpp:2357
const Vector & getResistingForce(const ElementConstPtrSet &, const bool &) const
Return the action of the elements from the set over this node.
Definition: Node.cpp:2610
virtual const Vector & getCrds(void) const
Return a const reference to the vector of nodal coordinates.
Definition: Node.cpp:668
Single freedom constraint.
Definition: SFreedom_Constraint.h:85
Vectors to store trial and committed values of node velocity.
Definition: NodeVelVectors.h:42
Vector3d getEigenvectorRot3dComponents(int) const
Return the eigenvector rotation components in a 3D vector.
Definition: Node.cpp:1648
double getDispSensitivity(int dof, int gradNum) const
Return displacement sensitivity.
Definition: Node.cpp:2236
Base class for components used to represent the material (continuum).
Definition: ContinuaReprComponent.h:39
virtual int setNumEigenvectors(int numVectorsToStore)
Set the dimensions of the matrix that constrains the eigenvectors.
Definition: Node.cpp:1525
virtual const Vector & getUnbalancedLoadIncInertia(void) const
Return unbalanced load vector including inertial forces.
Definition: Node.cpp:1287
virtual int setRayleighDampingFactor(double alphaM)
Sets the Rayleigh dumping factor.
Definition: Node.cpp:1386
A DOF_Group object is instantiated by the ConstraintHandler for every unconstrained node in the domai...
Definition: DOF_Group.h:107
virtual int addReactionForce(const Vector &, double factor)
Increments the node reaction.
Definition: Node.cpp:2953
const bool isFixedOnlyByFreezeConstraints(void) const
Return true if the node is fixed only by its freeze constraints (all the other constraints, if any, are dead)
Definition: Node.cpp:368
Mesh edge.
Definition: MeshEdge.h:40
double getAngularFrequency(int) const
Return the angular frequency corresponding to the i-th mode.
Definition: Node.cpp:1573
Geometric transformation that can be applied to the components of a set.
Definition: TrfGeom.h:48
std::set< Element * > ElementPtrSet
Container of element pointers.
Definition: Node.h:116
std::set< const Element * > ElementConstPtrSet
Container of const element pointers.
Definition: Node.h:117
const MeshEdge * next(const std::deque< MeshEdge > &, const std::set< const MeshEdge *> &) const
Returns an edge that has its origin in this node (and is not in visited).
Definition: Node.cpp:2592
int addInertiaLoadSensitivityToUnbalance(const Vector &accel, double fact=1.0, bool tag=false)
??
Definition: Node.cpp:1241
Vector getMaxModalVelocityForDOFs(int mode, const double &, const std::set< int > &dofs) const
Returns the maximum modal velocity on the DOFs and mode being passed as parameter and the acceleratio...
Definition: Node.cpp:1842
virtual const Vector & getRV(const Vector &V)
This is a method provided for Element objects, the Node object returns the product of the matrix R an...
Definition: Node.cpp:1502
void freeze_if_dead(NodeLocker *locker)
Imposes zero displacement (zero value for all node DOFs).
Definition: Node.cpp:398
Vector getEquivalentStaticLoad(int mode, const double &) const
Return the equivalent static load for the mode being passed as parameter and the acceleration corresp...
Definition: Node.cpp:1793
Posición en tres dimensiones.
Definition: Pos3d.h:44
const NodalLoad * createInertiaLoad(const Vector &)
Creates the inertia load that corresponds to the acceleration argument.
Definition: Node.cpp:1157
Single freedom constraints that make part of a load pattern.
Definition: NodeLocker.h:45
void setPyDict(const boost::python::dict &)
Set the values of the object members from a Python dictionary.
Definition: Node.cpp:1959
Matrix getTangentStiff(const ElementConstPtrSet &) const
Return the tangent stiffness contribution of the elements argument.
Definition: Node.cpp:2735
virtual int incrTrialDisp(const Vector &)
Increments the current trial displacement.
Definition: Node.cpp:1107
Open source finite element program for structural analysis.
Definition: ContinuaReprComponent.h:35
virtual DOF_Group * getDOF_GroupPtr(void)
Gets the DOF_Group pointer.
Definition: Node.cpp:640
virtual const Vector & getReaction(void) const
Return the node reaction.
Definition: Node.cpp:2748
virtual int setEigenvector(int, const Vector &)
Set el eigenvector eigenvector al modo mode.
Definition: Node.cpp:1546
Vector getMaxModalAccelerationForDOFs(int mode, const double &, const std::set< int > &dofs) const
Return the maximal modal acceleration on the DOFs and mode being passed as parameter and the accelera...
Definition: Node.cpp:1859
Matrix of floats.
Definition: Matrix.h:111
Vector getModalParticipationFactorsForDOFs(const boost::python::list &) const
Returns the modal participation factors.
Definition: Node.cpp:1726
Pos3d getCurrentPosition3d(const double &factor=1.0) const
Return the current position of the node scaled by factor: return initPos+ factor * nodDisplacement...
Definition: Node.cpp:802
Vector getRotXYZ(void) const
Returns the XYZ components of node rotation.
Definition: Node.cpp:908
std::set< const Constraint * > getConnectedConstraints(void) const
Return a set of const pointers the constraints connected to the node.
Definition: Node.cpp:2291
Parameter.
Definition: Parameter.h:68
const bool isFrozen(void) const
returns true if the node is frozen.
Definition: Node.cpp:548
Vector getVelXYZ(void) const
Returns the XYZ components of the translational velocity of the node.
Definition: Node.cpp:912
void alive(void)
Activates the component.
Definition: Node.cpp:562
virtual const Vector & getTrialVel(void) const
Returns the trial value of the velocity of the node.
Definition: Node.cpp:1044
virtual int getNumberDOF(void) const
Return the number of node DOFs, associated with the node.
Definition: Node.cpp:622
Vector getAlphaXYZ(void) const
Returns the XYZ components of the angular acceleration of the node.
Definition: Node.cpp:924
void kill(void)
Deactivates the component.
Definition: Node.cpp:555
size_t getNumberOfConnectedElements(void) const
Return the number of elements that are connected to this node.
Definition: Node.cpp:2438
int sendData(Communicator &)
Sends object members through the communicator argument.
Definition: Node.cpp:1883
Mesh node.
Definition: Node.h:112
Vector3d getReactionForce3d(void) const
Return the reaction force in a 3D vector.
Definition: Node.cpp:2769
double getDist2(const Pos2d &p, bool initialGeometry=true) const
Returns the square of the distance from the node to the point being passed as parameter.
Definition: Node.cpp:931
virtual int setNumColR(int numCol)
Creates a Matrix to store the R matrix.
Definition: Node.cpp:1470
SlidingVectorsSystem3d getResistingSlidingVectorsSystem3d(const ElementConstPtrSet &, const bool &) const
Returns the sliding vector system that represents the action of the elements of the set over the node...
Definition: Node.cpp:2643
Pos3d getPosition3d(const Vector &) const
Return the 3D position obtained as: initPos+ factor * v.
Definition: Node.cpp:746
Pos2d getCurrentPosition2d(const double &factor=1.0) const
Return the current position of the node scaled by factor: return initPos+ factor * nodDisplacement...
Definition: Node.cpp:780
virtual const Vector & getIncrDisp(void) const
Returns the displacement increment.
Definition: Node.cpp:1056
Load over a node.
Definition: NodalLoad.h:83
Matrix getInitialStiff(const ElementConstPtrSet &) const
Return the initial stiffness contribution of the elements argument.
Definition: Node.cpp:2744
static DefaultTag & getDefaultTag(void)
Returns a default value for node identifier.
Definition: Node.cpp:576
Vector en tres dimensiones.
Definition: Vector3d.h:39
Vector2d get2dForceComponents(const Vector &) const
Return the "force/displacement" components in a 2d vector.
Definition: Node.cpp:2887
int recvData(const Communicator &)
Receives object members through the communicator argument.
Definition: Node.cpp:1906
double getVelSensitivity(int dof, int gradNum) const
Return velocity sensitivity.
Definition: Node.cpp:2245
double getEffectiveModalMass(int mode) const
Return the effective modal mass that corresponds to i mode.
Definition: Node.cpp:1770
void addTributary(const double &) const
Adds to tributary the lentgth, area o volume being passed as parameter.
Definition: Node.cpp:1413
Clase base para los objetos en tres dimensiones.
Definition: GeomObj3d.h:43
std::set< SetBase * > get_sets(void) const
Returns the sets that include this node.
Definition: Node.cpp:2041