예제 #1
0
파일: FeFrame.cs 프로젝트: scudelari/EMASA
 public FeFrame(string inId, FeSection inSection, FeJoint inIJoint, FeJoint inJJoint)
 {
     _id      = inId;
     _section = inSection;
     _iJoint  = inIJoint;
     _jJoint  = inJJoint;
 }
예제 #2
0
 public FeMeshNode(string inId, Point3d inPoint, FeJoint inMatchingJoint = null)
 {
     Id    = inId;
     Point = inPoint;
     if (inMatchingJoint != null)
     {
         MatchingJoint = inMatchingJoint;
     }
 }
예제 #3
0
 public void AddElement(FeJoint inJoint)
 {
     Joints.Add(inJoint);
 }