Beispiel #1
0
 public FeFrame(string inId, FeSection inSection, FeJoint inIJoint, FeJoint inJJoint)
 {
     _id      = inId;
     _section = inSection;
     _iJoint  = inIJoint;
     _jJoint  = inJJoint;
 }
Beispiel #2
0
 public FeMeshNode(string inId, Point3d inPoint, FeJoint inMatchingJoint = null)
 {
     Id    = inId;
     Point = inPoint;
     if (inMatchingJoint != null)
     {
         MatchingJoint = inMatchingJoint;
     }
 }
Beispiel #3
0
 public void AddElement(FeJoint inJoint)
 {
     Joints.Add(inJoint);
 }